forked from codecov/codecov-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "codecov",
"version": "3.0.4",
"description": "Uploading report to Codecov: https://codecov.io",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"pretest": "eslint .",
"test": "nyc mocha -R spec"
},
"repository": {
"type": "git",
"url": "https://github.com/codecov/codecov-node"
},
"keywords": ["coverage", "code-coverage", "codecov.io", "codecov"],
"bin": {
"codecov": "./bin/codecov"
},
"engines": {
"node": ">=4.0"
},
"author": "Codecov <hello@codecov.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codecov/codecov-node/issues"
},
"homepage": "https://github.com/codecov/codecov-node",
"dependencies": {
"argv": "^0.0.2",
"ignore-walk": "^3.0.1",
"request": "^2.87.0",
"urlgrey": "^0.4.4"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"expect.js": "^0.3.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"prettier": "^1.13.7"
},
"lint-staged": {
"**/*.js": ["prettier --write --parser=babylon", "git add"],
"**/*.json": ["prettier --write --parser=json", "git add"]
}
}