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
670 B
JSON

{
"name": "fx",
"version": "1.0.3",
"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": ">=9"
},
"dependencies": {
"get-stdin": "^5.0.1",
"jsome": "^2.5.0",
"meow": "^4.0.0"
},
"devDependencies": {
"ava": "^0.24.0",
"pkg": "^4.3.0",
"release-it": "^6.1.1"
}
}