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

41 lines
815 B
JSON

{
"name": "fx",
"version": "3.0.0",
"description": "Command-line JSON processing tool",
"repository": "antonmedv/fx",
"author": "Anton Medvedev <anton@medv.io>",
"license": "MIT",
"bin": {
"fx": "index.js"
},
"files": [
"index.js"
],
"scripts": {
"test": "ava",
"release": "pkg . --out-path dist && release-it --github.release --github.assets=dist/*"
},
"pkg": {
"scripts": "node_modules/neo-blessed/lib/**/*.js"
},
"keywords": [
"json",
"cli"
],
"engines": {
"node": ">=8"
},
"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",
"pkg": "^4.3.4",
"release-it": "^7.6.2"
}
}