1 | {
|
2 | "name": "codecov",
|
3 | "version": "3.8.3",
|
4 | "description": "Uploading report to Codecov: https://codecov.io",
|
5 | "main": "index.js",
|
6 | "scripts": {
|
7 | "lint": "eslint .",
|
8 | "pretest": "npm run lint",
|
9 | "test": "jest --coverage"
|
10 | },
|
11 | "repository": {
|
12 | "type": "git",
|
13 | "url": "https://github.com/codecov/codecov-node"
|
14 | },
|
15 | "keywords": [
|
16 | "coverage",
|
17 | "code-coverage",
|
18 | "codecov.io",
|
19 | "codecov"
|
20 | ],
|
21 | "bin": {
|
22 | "codecov": "./bin/codecov"
|
23 | },
|
24 | "engines": {
|
25 | "node": ">=4.0"
|
26 | },
|
27 | "author": "Codecov <hello@codecov.io>",
|
28 | "license": "MIT",
|
29 | "bugs": {
|
30 | "url": "https://github.com/codecov/codecov-node/issues"
|
31 | },
|
32 | "homepage": "https://github.com/codecov/codecov-node",
|
33 | "dependencies": {
|
34 | "argv": "0.0.2",
|
35 | "ignore-walk": "3.0.4",
|
36 | "js-yaml": "3.14.1",
|
37 | "teeny-request": "7.1.1",
|
38 | "urlgrey": "1.0.0"
|
39 | },
|
40 | "devDependencies": {
|
41 | "eslint": "^7.7.0",
|
42 | "eslint-config-prettier": "^8.3.0",
|
43 | "husky": "7.0.1",
|
44 | "jest": "^26.4.1",
|
45 | "lint-staged": "11.0.1",
|
46 | "mock-fs": "4.14.0",
|
47 | "prettier": "2.3.2"
|
48 | },
|
49 | "husky": {
|
50 | "hooks": {
|
51 | "pre-commit": "npm run lint && lint-staged",
|
52 | "pre-push": "npm test"
|
53 | }
|
54 | },
|
55 | "lint-staged": {
|
56 | "*.{ts,js,json,md}": [
|
57 | "prettier --write",
|
58 | "git add"
|
59 | ]
|
60 | }
|
61 | }
|