forked from gotwarlost/istanbul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 4.17 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
{
"name": "istanbul",
"version": "0.4.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]>",
"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]>",
"Daniel Sabelnikov @dragn <[email protected]>",
"Tony Lukasavage @tonylukasavage <[email protected]>",
"Simon Ramsay @nexus-uw",
"Dominykas Blyžė @dominykas",
"Seth Pollack @sethpollack",
"Benjamin E. Coe @bcoe <[email protected]>",
"Yuren Ju <[email protected]>",
"Aleksey Verkholantsev <[email protected]>",
"Ed S <[email protected]>",
"Mordy Tikotzky <[email protected]>",
"Haoliang Gao @popomore <[email protected]>",
"Roderick Hsiao @roderickhsiao",
"Nikita Gusakov @nkt",
"Alex Dunphy @alexdunphy <[email protected]>",
"Artemy Tregubenko @arty-name <[email protected]>",
"Arye Lukashevski @aryelu",
"@sterlinghw",
"Gord Tanner <[email protected]>",
"Tom MacWright @tmcw <[email protected]>",
"Kitson Kelly @kitsonk",
"@asa-git"
],
"scripts": {
"pretest": "jshint index.js lib/ test/ && ./download-escodegen-browser.sh",
"test": "node --harmony 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"
},
"files": [
"index.js",
"lib/"
],
"repository": {
"type": "git",
"url": "git://github.com/gotwarlost/istanbul.git"
},
"dependencies": {
"abbrev": "1.0.x",
"async": "1.x",
"escodegen": "1.7.x",
"esprima": "2.5.x",
"fileset": "0.2.x",
"handlebars": "^4.0.1",
"js-yaml": "3.x",
"mkdirp": "0.5.x",
"nopt": "3.x",
"once": "1.x",
"resolve": "1.1.x",
"supports-color": "^3.1.0",
"which": "^1.1.1",
"wordwrap": "^1.0.0"
},
"devDependencies": {
"coveralls": "2.x",
"glob": "^5.0.14",
"jshint": "^2.8.0",
"nodeunit": "0.9.x",
"requirejs": "2.x",
"rimraf": "^2.4.3"
}
}