-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "karma-coveralls",
"version": "2.1.0",
"description": "A karma plugin which uploads coverage reports to coveralls.io",
"main": "lib/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/",
"coverage": "./node_modules/.bin/istanbul cover --report lcov node_modules/.bin/_mocha test/"
},
"repository": {
"type": "git",
"url": "http://github.com/caitp/karma-coveralls.git"
},
"keywords": [
"karma-plugin",
"coverage",
"istanbul",
"coveralls.io"
],
"author": "Caitlin Potter <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/caitp/karma-coveralls/issues"
},
"homepage": "https://github.com/caitp/karma-coveralls",
"dependencies": {
"coveralls": "~3.0.0",
"lcov-result-merger": "^3.0.0",
"through2": "^2.0.0",
"vinyl-fs": "^3.0.2"
},
"devDependencies": {
"chai": "^2.1.1",
"istanbul": "^0.3.5",
"karma": "^0.12.37",
"mocha": "^2.1.0",
"proxyquire": "^1.3.0",
"sinon": "^1.12.2",
"sinon-chai": "^2.8.0"
}
}