forked from gotwarlost/istanbul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (90 loc) · 3.54 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
{
"name": "istanbul",
"version": "0.3.7",
"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]>",
"license" : "BSD-3-Clause",
"contributors": [
"Reid Burke <[email protected]>",
"Martin Cooper <[email protected]>",
"Dav Glass <[email protected]>",
"nowamasa <[email protected]>",
"Miller Medeiros @millermedeiros <[email protected]>",
"Daniel Perez Alvarez @unindented <[email protected]>",
"Mathias Bynens @mathiasbynens <[email protected]>",
"Nathan Brown @nbrownus <[email protected]>",
"Brian Ng @existentialism <[email protected]>",
"John Morrison @jrgm",
"Tomaz Muraus @kami <[email protected]>",
"Joe @jhansche <[email protected]>",
"Vojta Jina @vojtajina <[email protected]>",
"Dmitry Shirokov @runk <[email protected]>",
"Chris Gladd @chrisgladd",
"Sergey Belov <[email protected]>",
"porneL @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]>",
"Ryan Roemer @ryan-roemer <[email protected]>",
"Douglas Christopher Wilson @dougwilson",
"Gustav Nikolaj @gustavnikolaj <[email protected]>",
"Denis Sokolov @denis-sokolov <[email protected]>",
"Yann Mainier @ymainier",
"Yiyu He @dead-horse <[email protected]>",
"Andrew Kelley @andrewrk <[email protected]>",
"Will LaBranche @wlabranche <[email protected]>",
"Mathieu Naouache @math-nao <[email protected]>",
"Ron Korving @ronkorving",
"Rob McGuire-Dale @robatron <[email protected]>",
"Justin Johnson @booleangate",
"Juan Gabriel Jiménez @juangabreil <[email protected]>"
],
"scripts": {
"pretest": "jshint index.js lib/ test/",
"test": "node 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": "2.0.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",
"supports-color": "1.2.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",
"glob": "4.4.x"
}
}