-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.57 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
{
"name": "gulp-codecov",
"version": "3.0.5",
"description": "Gulp plugin to submit code coverage to Codecov",
"keywords": [
"gulpplugin",
"coverage",
"codecov",
"gulp-codecov",
"code-coverage",
"codecov.io",
"gulp"
],
"homepage": "https://github.com/eddiemoore/gulp-codecov",
"bugs": "https://github.com/eddiemoore/gulp-codecov/issues",
"author": {
"name": "Ed Moore",
"url": "https://github.com/eddiemoore"
},
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/eddiemoore/gulp-codecov.git"
},
"scripts": {
"precommit": "lint-staged",
"prettier": "prettier-standard *.js test/*.js test/**/*.js",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcov -- -R spec",
"codecov": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && gulp codecov && rm -rf ./coverage"
},
"dependencies": {
"codecov": "^3.6.2",
"path": "^0.12.7",
"plugin-error": "^1.0.1",
"through2": "^3.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"event-stream": "^4.0.1",
"gulp": "4.0.2",
"husky": "5.0.9",
"istanbul": "^0.4.5",
"lint-staged": "10.5.4",
"mocha": "^8.1.1",
"mocha-lcov-reporter": "^1.3.0",
"prettier-standard": "^16.0.0",
"sinon": "9.2.4",
"vinyl": "2.2.1"
},
"engines": {
"node": ">= 4",
"npm": ">=1.2.10"
},
"license": "MIT",
"lint-staged": {
"**/*.js": [
"prettier-standard",
"git add"
],
"*.js": [
"prettier-standard",
"git add"
]
}
}