forked from markdalgleish/gulp-coveralls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.44 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
{
"name": "@kollavarsham/gulp-coveralls",
"version": "0.6.0",
"description": "Gulp plugin to submit code coverage to Coveralls",
"keywords": [
"gulpplugin",
"coverage"
],
"homepage": "https://github.com/kollavarsham/gulp-coveralls",
"bugs": {
"url": "https://github.com/kollavarsham/gulp-coveralls/issues"
},
"author": "Mark Dalgleish (https://github.com/markdalgleish)",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/kollavarsham/gulp-coveralls.git"
},
"scripts": {
"test": "jshint index.js && nyc --reporter=lcov mocha --report lcov -- -R spec",
"coveralls": "nyc mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info && gulp coveralls && rm -rf ./coverage"
},
"files": [
"LICENSE",
"README.md",
"gulpfile.js",
"index.js",
".editorconfig",
".gitattributes",
".jshintrc"
],
"dependencies": {
"coveralls": "^3.1.1",
"plugin-error": "^2.0.1",
"through2": "^4.0.2"
},
"devDependencies": {
"event-stream": "^4.0.1",
"gulp": "^4.0.2",
"jshint": "^2.13.6",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"should": "^13.2.3",
"sinon": "^15.0.1",
"vinyl": "^3.0.0"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"licenses": [
{
"type": "MIT",
"url": "http://mit-license.org/markdalgleish"
}
],
"directories": {
"test": "test"
}
}