2018-01-25 17:30:05 +00:00
|
|
|
{
|
|
|
|
"name": "fx",
|
2020-06-17 15:34:44 +00:00
|
|
|
"version": "19.0.1",
|
2018-11-13 11:26:10 +00:00
|
|
|
"description": "Command-line JSON viewer",
|
2018-01-25 17:30:05 +00:00
|
|
|
"repository": "antonmedv/fx",
|
2019-12-29 15:24:39 +00:00
|
|
|
"homepage": "https://fx.wtf",
|
2018-01-25 17:30:05 +00:00
|
|
|
"author": "Anton Medvedev <anton@medv.io>",
|
|
|
|
"license": "MIT",
|
|
|
|
"bin": {
|
|
|
|
"fx": "index.js"
|
|
|
|
},
|
|
|
|
"files": [
|
2020-06-17 15:24:45 +00:00
|
|
|
"*.js"
|
2018-01-25 17:30:05 +00:00
|
|
|
],
|
|
|
|
"scripts": {
|
2018-01-26 23:44:19 +00:00
|
|
|
"test": "ava",
|
2020-06-17 15:34:10 +00:00
|
|
|
"build": "pkg . --out-path dist",
|
2019-01-30 03:14:56 +00:00
|
|
|
"zip": "cd dist && find . -name 'fx-*' -exec zip '{}.zip' '{}' \\;",
|
2019-04-04 06:32:00 +00:00
|
|
|
"release": "release-it --github.release --github.assets=dist/*.zip",
|
2019-04-04 06:34:54 +00:00
|
|
|
"brew:release": "brew bump-formula-pr --url=https://registry.npmjs.org/fx/-/fx-`fx package.json .version`.tgz --no-audit fx"
|
2018-11-02 18:24:56 +00:00
|
|
|
},
|
2019-11-06 08:19:26 +00:00
|
|
|
"release-it": {
|
|
|
|
"hooks": {
|
|
|
|
"after:bump": "rm -rf ./dist && npm run build && npm run zip"
|
|
|
|
}
|
|
|
|
},
|
2018-01-25 17:30:05 +00:00
|
|
|
"keywords": [
|
|
|
|
"json",
|
2018-11-13 11:26:10 +00:00
|
|
|
"viewer",
|
2018-11-11 07:33:24 +00:00
|
|
|
"cli",
|
|
|
|
"terminal",
|
|
|
|
"term",
|
|
|
|
"console",
|
|
|
|
"ascii",
|
|
|
|
"unicode",
|
|
|
|
"blessed"
|
2018-01-25 17:30:05 +00:00
|
|
|
],
|
|
|
|
"engines": {
|
2018-06-26 10:36:28 +00:00
|
|
|
"node": ">=8"
|
2018-01-25 17:30:05 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-12-25 13:10:37 +00:00
|
|
|
"@medv/blessed": "^2.0.1",
|
2020-06-17 14:17:14 +00:00
|
|
|
"chalk": "^4.1.0",
|
2019-11-06 08:07:13 +00:00
|
|
|
"indent-string": "^4.0.0",
|
2020-06-17 14:17:14 +00:00
|
|
|
"lossless-json": "^1.0.4",
|
2019-12-12 10:48:49 +00:00
|
|
|
"string-width": "^4.2.0"
|
2018-01-26 02:52:08 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-06-17 14:17:14 +00:00
|
|
|
"ava": "^3.9.0",
|
|
|
|
"pkg": "^4.4.8",
|
|
|
|
"release-it": "^13.6.3"
|
2018-01-25 17:30:05 +00:00
|
|
|
}
|
|
|
|
}
|