-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "gulp-coveralls",
"version": "0.1.4",
"description": "Gulp plugin to submit code coverage to Coveralls",
"keywords": [
"gulpplugin",
"coverage"
],
"homepage": "https://github.com/markdalgleish/gulp-coveralls",
"bugs": "https://github.com/markdalgleish/gulp-coveralls/issues",
"author": {
"name": "Mark Dalgleish",
"url": "https://github.com/markdalgleish"
},
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/markdalgleish/gulp-coveralls.git"
},
"scripts": {
"test": "jshint index.js && istanbul cover ./node_modules/mocha/bin/_mocha --report lcov -- -R spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info && gulp coveralls && rm -rf ./coverage"
},
"dependencies": {
"coveralls": "^2.11.2",
"gulp-util": "^3.0.4",
"through2": "^1.1.1"
},
"devDependencies": {
"event-stream": "^3.3.0",
"gulp": "^3.8.11",
"istanbul": "^0.3.13",
"jshint": "^2.7.0",
"mocha": "^2.2.4",
"mocha-lcov-reporter": "^0.0.2",
"should": "^6.0.1",
"sinon": "^1.14.1"
},
"engines": {
"node": ">=0.10.0",
"npm": ">=1.2.10"
},
"licenses": [
{
"type": "MIT",
"url": "http://mit-license.org/markdalgleish"
}
]
}