forked from VimCommando/fx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.37 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
54
55
56
57
58
59
60
61
62
{
"name": "fx",
"version": "18.0.1",
"description": "Command-line JSON viewer",
"repository": "antonmedv/fx",
"homepage": "https://fx.wtf",
"author": "Anton Medvedev <[email protected]>",
"license": "MIT",
"bin": {
"fx": "index.js"
},
"files": [
"bang.js",
"config.js",
"find.js",
"fx.js",
"index.js",
"print.js",
"reduce.js",
"std.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": "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",
"array-equal": "^1.0.0",
"chalk": "^3.0.0",
"indent-string": "^4.0.0",
"lossless-json": "^1.0.3",
"string-width": "^4.2.0"
},
"devDependencies": {
"ava": "^2.4.0",
"pkg": "^4.4.2",
"release-it": "^12.4.3"
}
}