forked from gotwarlost/istanbul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 4.52 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.4.3",
"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 <kananthmail-github@yahoo.com>",
"license": "BSD-3-Clause",
"contributors": [
"Reid Burke <me@reidburke.com>",
"Martin Cooper <mfncooper@gmail.com>",
"Dav Glass <davglass@gmail.com>",
"nowamasa <nowamasa@gmail.com>",
"Miller Medeiros @millermedeiros <contact@millermedeiros.com>",
"Daniel Perez Alvarez @unindented <unindented@gmail.com>",
"Mathias Bynens @mathiasbynens <mathias@qiwi.be>",
"Nathan Brown @nbrownus <nate@betable.com>",
"Brian Ng @existentialism <bng412@gmail.com>",
"John Morrison @jrgm",
"Tomaz Muraus @kami <tomaz+github@tomaz.me>",
"Joe @jhansche <jhansche@meetme.com>",
"Vojta Jina @vojtajina <vojta.jina@gmail.com>",
"Dmitry Shirokov @runk <deadrunk@gmail.com>",
"Chris Gladd @chrisgladd",
"Sergey Belov <peimei@ya.ru>",
"porneL @pornel <pornel@pornel.net>",
"@asifrc",
"Gergely Nemeth @gergelyke",
"@bixdeng",
"@mpderbec",
"@jxiaodev",
"Arpad Borsos @Swatinem <arpad.borsos@googlemail.com>",
"Ariya Hidayat @ariya",
"@markyen",
"Sam Saccone @samccone <sam@samx.it>",
"Jason Cheatham @jason0x43",
"@smikes",
"Yasyf Mohamedali @yasyf <yasyfm@gmail.com>",
"Fabio Crisci @piuccio <piuccio@gmail.com>",
"Ryan Roemer @ryan-roemer <ryan@loose-bits.com>",
"Douglas Christopher Wilson @dougwilson",
"Gustav Nikolaj @gustavnikolaj <gustavnikolaj@gmail.com>",
"Denis Sokolov @denis-sokolov <denis@sokolov.cc>",
"Yann Mainier @ymainier",
"Yiyu He @dead-horse <heyiyu.deadhorse@gmail.com>",
"Andrew Kelley @andrewrk <superjoe30@gmail.com>",
"Will LaBranche @wlabranche <will@labranche.io>",
"Mathieu Naouache @math-nao <math.nao@outlook.com>",
"Ron Korving @ronkorving",
"Rob McGuire-Dale @robatron <rob.mcguiredale@gmail.com>",
"Justin Johnson @booleangate",
"Juan Gabriel Jiménez @juangabreil <juangabreil@gmail.com>",
"Daniel Sabelnikov @dragn <dsabelnikov@gmail.com>",
"Tony Lukasavage @tonylukasavage <anthony.lukasavage@gmail.com>",
"Simon Ramsay @nexus-uw",
"Dominykas Blyžė @dominykas",
"Seth Pollack @sethpollack",
"Benjamin E. Coe @bcoe <ben@npmjs.com>",
"Yuren Ju <yurenju@gmail.com>",
"Aleksey Verkholantsev <alex-vee@yandex-team.ru>",
"Ed S <ejsanders@gmail.com>",
"Mordy Tikotzky <mordytk@gmail.com>",
"Haoliang Gao @popomore <sakura9515@gmail.com>",
"Roderick Hsiao @roderickhsiao",
"Nikita Gusakov @nkt",
"Alex Dunphy @alexdunphy <alexanderdunphy@gmail.com>",
"Artemy Tregubenko @arty-name <me@arty.name>",
"Arye Lukashevski @aryelu",
"@sterlinghw",
"Gord Tanner <gord@bithound.io>",
"Tom MacWright @tmcw <tom@macwright.org>",
"Kitson Kelly @kitsonk",
"@asa-git",
"@RoCat",
"Ian Page Hands @iphands <iphands@gmail.com>",
"Eddie Gurnee @pegurnee",
"Kevin Decker @kpdecker <kpdecker@gmail.com>",
"isaacs @isaacs <i@izs.me>",
"Steve Gray @steve-gray",
"Prayag Verma @pra85 <prayag.verma@gmail.com>",
"Abe Fehr @abejfehr <abe.fehr@gmail.com>",
"Brian Woodward @doowb <brian.woodward@gmail.com>"
],
"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.8.x",
"esprima": "2.7.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"
}
}