forked from antonmedv/fx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.17 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "fx",
"version": "20.0.2",
"description": "Command-line JSON viewer",
"repository": "antonmedv/fx",
"homepage": "https://fx.wtf",
"author": "Anton Medvedev <[email protected]>",
"license": "MIT",
"bin": {
"fx": "index.js"
},
"files": [
"*.js"
],
"scripts": {
"test": "ava",
"build": "pkg . --out-path dist",
"zip": "cd dist && find . -name 'fx-*' -exec zip '{}.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"
},
"release-it": {
"hooks": {
"after:bump": "rm -rf ./dist && npm run build && npm run zip"
}
},
"keywords": [
"json",
"viewer",
"cli",
"terminal",
"term",
"console",
"ascii",
"unicode",
"blessed"
],
"engines": {
"node": ">=8"
},
"dependencies": {
"@medv/blessed": "^2.0.1",
"chalk": "^4.1.0",
"indent-string": "^4.0.0",
"lossless-json": "^1.0.4",
"string-width": "^4.2.0"
},
"devDependencies": {
"ava": "^3.12.1",
"pkg": "^4.4.9",
"release-it": "^14.0.1"
}
}