2018-01-25 17:30:05 +00:00
|
|
|
{
|
|
|
|
"name": "fx",
|
2018-12-15 08:22:31 +00:00
|
|
|
"version": "10.0.0",
|
2018-11-13 11:26:10 +00:00
|
|
|
"description": "Command-line JSON viewer",
|
2018-01-25 17:30:05 +00:00
|
|
|
"repository": "antonmedv/fx",
|
|
|
|
"author": "Anton Medvedev <anton@medv.io>",
|
|
|
|
"license": "MIT",
|
|
|
|
"bin": {
|
|
|
|
"fx": "index.js"
|
|
|
|
},
|
|
|
|
"files": [
|
2018-12-02 15:00:37 +00:00
|
|
|
"config.js",
|
2018-12-14 18:14:21 +00:00
|
|
|
"find.js",
|
2018-12-02 15:00:37 +00:00
|
|
|
"fx.js",
|
2018-11-03 14:07:43 +00:00
|
|
|
"index.js",
|
2018-12-02 15:00:37 +00:00
|
|
|
"print.js",
|
|
|
|
"reduce.js"
|
2018-01-25 17:30:05 +00:00
|
|
|
],
|
|
|
|
"scripts": {
|
2018-01-26 23:44:19 +00:00
|
|
|
"test": "ava",
|
2018-12-02 16:23:53 +00:00
|
|
|
"build": "pkg . --out-path dist -t node8-linux-x64,node8-macos-x64,node8-win-x64",
|
2018-12-01 19:17:24 +00:00
|
|
|
"release": "npm run build && release-it --github.release --github.assets=dist/*"
|
2018-11-02 18:24:56 +00:00
|
|
|
},
|
2018-01-25 17:30:05 +00:00
|
|
|
"keywords": [
|
|
|
|
"json",
|
2018-11-13 11:26:10 +00:00
|
|
|
"viewer",
|
2018-11-11 07:33:24 +00:00
|
|
|
"cli",
|
|
|
|
"terminal",
|
|
|
|
"term",
|
|
|
|
"console",
|
|
|
|
"ascii",
|
|
|
|
"unicode",
|
|
|
|
"blessed"
|
2018-01-25 17:30:05 +00:00
|
|
|
],
|
|
|
|
"engines": {
|
2018-06-26 10:36:28 +00:00
|
|
|
"node": ">=8"
|
2018-01-25 17:30:05 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-12-02 12:58:10 +00:00
|
|
|
"@medv/blessed": "^1.1.1",
|
2018-11-02 18:24:56 +00:00
|
|
|
"chalk": "^2.4.1",
|
|
|
|
"indent-string": "^3.2.0",
|
2019-01-30 02:34:25 +00:00
|
|
|
"reopen-tty": "^1.1.2",
|
2018-11-02 18:24:56 +00:00
|
|
|
"string-width": "^2.1.1"
|
2018-01-26 02:52:08 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-06-26 14:59:04 +00:00
|
|
|
"ava": "^0.25.0",
|
2018-08-30 15:12:44 +00:00
|
|
|
"pkg": "^4.3.4",
|
2018-11-09 18:57:24 +00:00
|
|
|
"release-it": "^8.2.0"
|
2018-01-25 17:30:05 +00:00
|
|
|
}
|
|
|
|
}
|