forked from Archives/fx
49 lines
946 B
JSON
49 lines
946 B
JSON
{
|
|
"name": "fx",
|
|
"version": "9.0.0",
|
|
"description": "Command-line JSON viewer",
|
|
"repository": "antonmedv/fx",
|
|
"author": "Anton Medvedev <anton@medv.io>",
|
|
"license": "MIT",
|
|
"bin": {
|
|
"fx": "index.js"
|
|
},
|
|
"files": [
|
|
"config.js",
|
|
"fx.js",
|
|
"index.js",
|
|
"print.js",
|
|
"reduce.js"
|
|
],
|
|
"scripts": {
|
|
"test": "ava",
|
|
"build": "pkg . --out-path dist -t node8-linux-x64,node8-macos-x64,node8-win-x64",
|
|
"release": "npm run build && release-it --github.release --github.assets=dist/*"
|
|
},
|
|
"keywords": [
|
|
"json",
|
|
"viewer",
|
|
"cli",
|
|
"terminal",
|
|
"term",
|
|
"console",
|
|
"ascii",
|
|
"unicode",
|
|
"blessed"
|
|
],
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"dependencies": {
|
|
"@medv/blessed": "^1.1.1",
|
|
"chalk": "^2.4.1",
|
|
"indent-string": "^3.2.0",
|
|
"string-width": "^2.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^0.25.0",
|
|
"pkg": "^4.3.4",
|
|
"release-it": "^8.2.0"
|
|
}
|
|
}
|