forked from alex-seville/blanket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.56 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
{
"name": "blanket",
"description": "seamless js code coverage",
"version": "1.1.5",
"homepage": "https://github.com/alex-seville/blanket",
"author": {
"name": "Alex-Seville",
"email": "[email protected]",
"url": "http://blanketjs.org"
},
"repository": {
"type": "git",
"url": "git://github.com/alex-seville/blanket.git"
},
"bugs": {
"url": "https://github.com/alex-seville/blanket/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/alex-seville/blanket/blob/master/LICENSE-MIT"
}
],
"main": "src/index.js",
"engines": {
"node": ">=0.10.7"
},
"dependencies": {
"esprima": "~1.0.2",
"falafel": "~0.3.1",
"xtend": "~2.1.1"
},
"devDependencies": {
"phantomjs": "1.8.2-0",
"coffee-script": "~1.7.1",
"mocha": "~1.17.1",
"requirejs": "~2.1.4",
"travis-cov": "*",
"async": "~0.2.10",
"grunt": "~0.4.2",
"grunt-contrib-uglify": "~0.3.2",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-clean": "~0.5.0",
"load-grunt-tasks": "~0.3.0",
"uglify-save-license": "~0.2.2"
},
"scripts": {
"test": "grunt --verbose blanketTest"
},
"config": {
"blanket": {
"pattern": "test",
"data-cover-flags": {
"debug": false
},
"loader": "./node-loaders/coffee-script",
"data-cover-reporter-options": {
"shortnames": true
}
},
"travis-cov": {
"threshold": 70,
"removeKey": "branchFcn"
}
},
"keywords": [
"coverage"
]
}