UNPKG

3.98 kBJSONView Raw
1{
2 "name": "istanbul",
3 "version": "0.3.1",
4 "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",
5 "keywords": [ "coverage", "code coverage", "JS code coverage", "JS coverage" ],
6 "author": "Krishnan Anantheswaran <kananthmail-github@yahoo.com>",
7 "contributors": [
8 "Reid Burke <me@reidburke.com>",
9 "Martin Cooper <mfncooper@gmail.com>",
10 "Dav Glass <davglass@gmail.com>",
11 "nowamasa <nowamasa@gmail.com>",
12 "Miller Medeiros <contact@millermedeiros.com>",
13 "Daniel Perez Alvarez <unindented@gmail.com>",
14 "Mathias Bynens <mathias@qiwi.be>",
15 "Nathan Brown <nate@betable.com>",
16 "Brian Ng <bng412@gmail.com>",
17 "John Morrison @jrgm",
18 "Tomaz Muraus <tomaz+github@tomaz.me>",
19 "Joe @jhansche <jhansche@meetme.com>",
20 "Vojta Jina <vojta.jina@gmail.com>",
21 "Dmitry Shirokov @runk <deadrunk@gmail.com>",
22 "Chris Gladd @chrisgladd",
23 "Sergey Belov <peimei@ya.ru>",
24 "porneL <pornel@pornel.net>",
25 "@asifrc",
26 "Gergely Nemeth @gergelyke",
27 "@bixdeng",
28 "@mpderbec",
29 "@jxiaodev",
30 "Arpad Borsos @Swatinem <arpad.borsos@googlemail.com>",
31 "Ariya Hidayat @ariya",
32 "@markyen",
33 "Sam Saccone @samccone <sam@samx.it>",
34 "Jason Cheatham @jason0x43",
35 "@smikes",
36 "Yasyf Mohamedali @yasyf <yasyfm@gmail.com>",
37 "Fabio Crisci @piuccio <piuccio@gmail.com>"
38 ],
39 "preferGlobal": true,
40 "scripts": {
41 "pretest": "jshint index.js lib/ test/",
42 "test": "test/run.js",
43 "posttest": "node ./lib/cli.js check-coverage --statements 95 --branches 80",
44 "docs": "npm install yuidocjs && node node_modules/yuidocjs/lib/cli.js ."
45 },
46 "bin": {
47 "istanbul": "./lib/cli.js"
48 },
49 "repository": {
50 "type": "git",
51 "url": "git://github.com/gotwarlost/istanbul.git"
52 },
53 "dependencies": {
54 "esprima": "1.2.x",
55 "escodegen": "1.3.x",
56 "handlebars": "1.3.x",
57 "mkdirp": "0.5.x",
58 "nopt": "3.x",
59 "fileset": "0.1.x",
60 "which": "1.0.x",
61 "async": "0.9.x",
62 "abbrev": "1.0.x",
63 "wordwrap": "0.0.x",
64 "resolve": "0.7.x",
65 "js-yaml": "3.x",
66 "once": "1.x"
67 },
68 "devDependencies": {
69 "rimraf": "2.2.x",
70 "nodeunit": "0.9.x",
71 "jshint": "2.5.x",
72 "requirejs": "2.x",
73 "coveralls": "2.x"
74 },
75 "jshintConfig": {
76 "bitwise": true,
77 "camelcase": false,
78 "curly": true,
79 "eqeqeq": true,
80 "forin": true,
81 "freeze": true,
82 "immed": true,
83 "latedef": true,
84 "maxlen": 150,
85 "newcap": true,
86 "noarg": true,
87 "nonbsp": true,
88 "nonew": true,
89 "plusplus": true,
90 "trailing": true,
91 "undef": true,
92 "unused": true,
93
94 "strict": false,
95
96 "asi": false,
97 "boss": false,
98 "debug": false,
99 "eqnull": false,
100 "esnext": false,
101 "evil": false,
102 "expr": false,
103 "funcscope": false,
104 "globalstrict": false,
105 "iterator": false,
106 "lastsemic": false,
107 "laxbreak": true,
108 "laxcomma": false,
109 "loopfunc": false,
110 "multistr": false,
111 "notypeof": false,
112 "proto": false,
113 "scripturl": false,
114 "smarttabs": false,
115 "shadow": false,
116 "sub": false,
117 "supernew": false,
118 "validthis": false,
119 "noyield": false,
120
121 "browser": true,
122 "node": true,
123
124 "nomen": false,
125 "onevar": true,
126 "passfail": false,
127 "white": false
128 }
129}
130