-
Notifications
You must be signed in to change notification settings - Fork 177
/
package.json
72 lines (72 loc) · 1.63 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.2.3",
"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"
},
"license": "MIT",
"main": "src/index.js",
"engines": {
"node": ">=0.10.7"
},
"dependencies": {
"acorn": "^1.0.3",
"falafel": "~1.2.0",
"foreach": "^2.0.5",
"isarray": "0.0.1",
"object-keys": "^1.0.6",
"xtend": "~4.0.0"
},
"devDependencies": {
"async": "~1.4.0",
"coffee-react": "^4.0.0",
"coffee-script": "~1.9.3",
"grunt": "~0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-concat": "~0.5.1",
"grunt-contrib-jshint": "~0.11.2",
"grunt-contrib-uglify": "~0.9.1",
"load-grunt-tasks": "~3.2.0",
"mocha": "~2.2.5",
"phantomjs": "1.9.17",
"requirejs": "~2.1.19",
"react": "^0.13.3",
"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"
]
}