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

58 lines
1.5 KiB
JSON

{
"name": "fx",
"version": "12.0.1",
"description": "Command-line JSON viewer",
"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"
],
"scripts": {
"test": "ava",
"build": "pkg . --out-path dist -t node8-linux-x64,node8-macos-x64,node8-win-x64",
"zip": "cd dist && find . -name 'fx-*' -exec zip '{}.zip' '{}' \\;",
"release": "rm -rf ./dist && npm run build && npm run zip && 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",
"docker:build": "docker build -t antonmedv/fx:latest .",
"docker:tag": "docker tag antonmedv/fx:latest antonmedv/fx:`fx package.json .version`",
"docker:push": "docker push antonmedv/fx:latest && docker push antonmedv/fx:`fx package.json .version`",
"docker:release": "npm run docker:build && npm run docker:tag && npm run docker:push"
},
"keywords": [
"json",
"viewer",
"cli",
"terminal",
"term",
"console",
"ascii",
"unicode",
"blessed"
],
"engines": {
"node": ">=8"
},
"dependencies": {
"@medv/blessed": "^2.0.0",
"chalk": "^2.4.2",
"indent-string": "^3.2.0",
"string-width": "^3.0.0"
},
"devDependencies": {
"ava": "^1.2.1",
"pkg": "^4.3.7",
"release-it": "^10.1.0"
}
}