You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fx/package.json

49 lines
919 B
JSON

7 years ago
{
"name": "fx",
6 years ago
"version": "3.1.0",
"description": "Command-line JSON viewer",
7 years ago
"repository": "antonmedv/fx",
"author": "Anton Medvedev <anton@medv.io>",
"license": "MIT",
"bin": {
"fx": "index.js"
},
"files": [
"index.js",
"fx.js"
7 years ago
],
"scripts": {
"test": "ava",
"release": "pkg . --out-path dist && release-it --github.release --github.assets=dist/*"
7 years ago
},
"pkg": {
"scripts": "node_modules/neo-blessed/lib/**/*.js"
},
7 years ago
"keywords": [
"json",
"viewer",
"cli",
"terminal",
"term",
"console",
"ascii",
"unicode",
"blessed"
7 years ago
],
"engines": {
"node": ">=8"
7 years ago
},
"dependencies": {
"@medv/prettyjson": "^1.0.1",
"chalk": "^2.4.1",
"indent-string": "^3.2.0",
"neo-blessed": "^0.2.0",
"string-width": "^2.1.1"
},
"devDependencies": {
"ava": "^0.25.0",
6 years ago
"pkg": "^4.3.4",
6 years ago
"release-it": "^7.6.2"
7 years ago
}
}