-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.48 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
63
64
{
"name": "jscomplex",
"version": "1.1.0",
"description": "jscomplex",
"engines": {
"node": ">=4"
},
"keywords": [
"cyclomatic",
"complexity",
"halstead",
"effort",
"vocabulary",
"volume",
"metrics",
"javascript",
"es6",
"esnext",
"software",
"npm"
],
"main": "lib/jscomplex.js",
"bin": {
"jscomplex": "./bin/jscomplex.bin.js"
},
"scripts": {
"jscomplex": "node ./bin/jscomplex.bin.js \"['index.js', './lib/*.js', './bin/*.js']\"",
"json": "node ./bin/jscomplex.bin.js -j \"['index.js', './lib/*.js', './bin/*.js']\"",
"lint": "xo index.js test.js ./lib/jscomplex.js ./lib/symbol.js ./bin/jscomplex.bin.js",
"watch": "watch 'npm run jscomplex'",
"pretest": "npm run lint",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jansanchez/jscomplex.git"
},
"author": {
"name": "jansanchez",
"email": "[email protected]",
"url": "http://frontendlabs.io/author/jansanchez"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jansanchez/jscomplex/issues"
},
"homepage": "https://github.com/jansanchez/jscomplex#readme",
"dependencies": {
"chalk": "^1.1.1",
"commander": "^2.9.0",
"escomplex": "^2.0.0-alpha",
"esprima": "^2.7.2",
"map-stream": "0.0.6",
"vinyl-fs": "^2.4.2"
},
"devDependencies": {
"ava": "^0.13.0",
"watch": "^0.17.1",
"xo": "^0.12.1"
},
"xo": {
"esnext": true
}
}