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

55 lines
1.2 KiB
JSON

7 years ago
{
"name": "fx",
5 years ago
"version": "14.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": [
"bang.js",
"config.js",
"find.js",
"fx.js",
"index.js",
"print.js",
"reduce.js",
"stream.js"
7 years ago
],
"scripts": {
"test": "ava",
6 years ago
"build": "pkg . --out-path dist -t node8-linux-x64,node8-macos-x64,node8-win-x64",
"zip": "cd dist && find . -name 'fx-*' -exec zip '{}.zip' '{}' \\;",
5 years ago
"afterBump": "rm -rf ./dist && npm run build && npm run zip",
"release": "release-it --github.release --github.assets=dist/*.zip",
"brew:release": "brew bump-formula-pr --url=https://registry.npmjs.org/fx/-/fx-`fx package.json .version`.tgz --no-audit fx"
},
7 years ago
"keywords": [
"json",
"viewer",
"cli",
"terminal",
"term",
"console",
"ascii",
"unicode",
"blessed"
7 years ago
],
"engines": {
"node": ">=8"
7 years ago
},
"dependencies": {
5 years ago
"@medv/blessed": "^2.0.0",
"chalk": "^2.4.2",
"indent-string": "^4.0.0",
5 years ago
"string-width": "^4.1.0"
},
"devDependencies": {
"ava": "^2.4.0",
"pkg": "^4.4.0",
"release-it": "^12.4.3"
7 years ago
}
}