-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
45 lines (45 loc) · 1023 Bytes
/
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
{
"name": "jscoverage",
"version": "0.5.9",
"description": "a javascript coverage tool, can be used in node dev, and browser side js dev",
"main": "index.js",
"bin": {
"jscoverage": "./bin/jscoverage"
},
"scripts": {
"test": "./node_modules/mocha/bin/_mocha -t 60000 -r ./index.js -R spec --covinject true test/"
},
"engines": {
"node" : ">=0.8"
},
"dependencies" : {
"uglify-js" : "2.4.15",
"optimist" : "0.3.1",
"xfs" : "0.1.8",
"ejs": "1.0.0",
"debug": "1.0.3",
"coffee-script": "*"
},
"devDependencies" : {
"mocha" : "*",
"expect.js" : "*",
"xfs" : "*"
},
"repository": {
"type": "git",
"url": "git://github.com/fishbar/jscoverage.git"
},
"keywords": [
"jscoverage",
"node",
"javascript",
"coverage",
"dev",
"tool"
],
"author": "fish <zhengxinlin@gmail.com>, kate.sf <kate.sf@taobao.com>",
"contributors":[
{ "name": "christineRR", "email": "rongkunli1215@gmail.com" }
],
"license": "MIT"
}