forked from theneva/blanket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.62 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
{
"name": "blanket",
"description": "seamless js code coverage",
"version": "1.1.7",
"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.2.2",
"falafel": "~0.3.1",
"xtend": "~3.0.0"
},
"devDependencies": {
"async": "~0.9.0",
"coffee-script": "~1.7.1",
"grunt": "~0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-concat": "~0.4.0",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-uglify": "~0.4.0",
"load-grunt-tasks": "~0.4.0",
"mocha": "~1.20.1",
"phantomjs": "1.8.2-0",
"requirejs": "~2.1.14",
"travis-cov": "*",
"uglify-save-license": "~0.4.1"
},
"scripts": {
"build": "grunt build",
"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"
]
}