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

36 lines
681 B
JSON

{
"name": "fx",
"version": "1.1.1",
"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/*"
},
"keywords": [
"json",
"cli"
],
"engines": {
"node": ">=8"
},
"dependencies": {
"@medv/prettyjson": "^1.0.0",
"get-stdin": "^6.0.0",
"meow": "^5.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"pkg": "^4.3.3",
"release-it": "^7.4.7"
}
}