forked from gotwarlost/istanbul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (125 loc) · 3.89 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "istanbul",
"version": "0.3.0",
"description": "Yet another JS code coverage tool that computes statement, line, function and branch coverage with module loader hooks to transparently add coverage when running tests. Supports all JS coverage use cases including unit tests, server side functional tests and browser tests. Built for scale",
"keywords": [ "coverage", "code coverage", "JS code coverage", "JS coverage" ],
"author": "Krishnan Anantheswaran <[email protected]>",
"contributors": [
"Reid Burke <[email protected]>",
"Martin Cooper <[email protected]>",
"Dav Glass <[email protected]>",
"nowamasa <[email protected]>",
"Miller Medeiros <[email protected]>",
"Daniel Perez Alvarez <[email protected]>",
"Mathias Bynens <[email protected]>",
"Nathan Brown <[email protected]>",
"Brian Ng <[email protected]>",
"John Morrison @jrgm",
"Tomaz Muraus <[email protected]>",
"Joe @jhansche <[email protected]>",
"Vojta Jina <[email protected]>",
"Dmitry Shirokov @runk <[email protected]>",
"Chris Gladd @chrisgladd",
"Sergey Belov <[email protected]>",
"porneL <[email protected]>",
"@asifrc",
"Gergely Nemeth @gergelyke",
"@bixdeng",
"@mpderbec",
"@jxiaodev",
"Arpad Borsos @Swatinem <[email protected]>",
"Ariya Hidayat @ariya",
"@markyen",
"Sam Saccone @samccone <[email protected]>",
"Jason Cheatham @jason0x43",
"@smikes",
"Yasyf Mohamedali @yasyf <[email protected]>",
"Fabio Crisci @piuccio <[email protected]>"
],
"preferGlobal": true,
"scripts": {
"pretest": "jshint index.js lib/ test/",
"test": "test/run.js",
"posttest": "node ./lib/cli.js check-coverage --statements 95 --branches 80",
"docs": "npm install yuidocjs && node node_modules/yuidocjs/lib/cli.js ."
},
"bin": {
"istanbul": "./lib/cli.js"
},
"repository": {
"type": "git",
"url": "git://github.com/gotwarlost/istanbul.git"
},
"dependencies": {
"esprima": "1.2.x",
"escodegen": "1.3.x",
"handlebars": "1.3.x",
"mkdirp": "0.5.x",
"nopt": "3.x",
"fileset": "0.1.x",
"which": "1.0.x",
"async": "0.9.x",
"abbrev": "1.0.x",
"wordwrap": "0.0.x",
"resolve": "0.7.x",
"js-yaml": "3.x",
"once": "1.x"
},
"devDependencies": {
"rimraf": "2.2.x",
"nodeunit": "0.9.x",
"jshint": "2.5.x",
"requirejs": "2.x",
"coveralls": "2.x"
},
"jshintConfig": {
"bitwise": true,
"camelcase": false,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"immed": true,
"latedef": true,
"maxlen": 150,
"newcap": true,
"noarg": true,
"nonbsp": true,
"nonew": true,
"plusplus": true,
"trailing": true,
"undef": true,
"unused": true,
"strict": false,
"asi": false,
"boss": false,
"debug": false,
"eqnull": false,
"esnext": false,
"evil": false,
"expr": false,
"funcscope": false,
"globalstrict": false,
"iterator": false,
"lastsemic": false,
"laxbreak": true,
"laxcomma": false,
"loopfunc": false,
"multistr": false,
"notypeof": false,
"proto": false,
"scripturl": false,
"smarttabs": false,
"shadow": false,
"sub": false,
"supernew": false,
"validthis": false,
"noyield": false,
"browser": true,
"node": true,
"nomen": false,
"onevar": true,
"passfail": false,
"white": false
}
}