-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "jutil",
"description": "Command-line utilities for manipulating JSON",
"homepage": "http://github.com/misterfifths/jutil",
"version": "0.7.8",
"author": "Tim Clem",
"license": "MIT",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "http://github.com/misterfifths/jutil.git"
},
"files": [
"*.js",
"subcommands"
],
"main": "./jutil",
"bin": {
"jutil": "./jutil.js",
"jwhere": "./jutil.js",
"jfirst": "./jutil.js",
"jcount": "./jutil.js",
"jselect": "./jutil.js",
"jprops": "./jutil.js",
"jformat": "./jutil.js",
"jsort": "./jutil.js",
"jcat": "./jutil.js",
"jtake": "./jutil.js",
"jdrop": "./jutil.js",
"jtweak": "./jutil.js"
},
"dependencies": {
"ansi-styles": "^3.2.0",
"dashdash": "^1.14.1",
"object-path": "^0.11.5",
"supports-color": "^6.1.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"jshint": "^2.12.0",
"nyc": "^15.1.0"
},
"engines": {
"node": ">=5.12.0"
},
"scripts": {
"test": "nyc tests/run-tests",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "./run-jshint"
}
}