-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
84 lines (84 loc) · 2.48 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@codecov/uploader",
"version": "0.8.0",
"description": "Codecov Report Uploader",
"private": true,
"bin": {
"codecov": "dist/bin/codecov.js"
},
"scripts": {
"lint": "eslint \"src/**/*.ts\"",
"test": "npm run lint && npm run build && jest --runInBand",
"test:e2e": "jest test/e2e/output.test.ts",
"build:clean": "rm -rf dist",
"build": "tsc --build",
"build-linux": "pkg . --targets linuxstatic --output out/codecov-linux",
"build-aarch64": "pkg . --targets linuxstatic-arm64 --output out/codecov-aarch64",
"build-macos-x64": "pkg . --targets macos-x64 --output out/codecov-macos-x64",
"build-macos-arm64": "pkg . --targets macos-arm64 --output out/codecov-macos-arm64",
"build-alpine": "pkg . --targets node14-alpine-x64 --output out/codecov-alpine",
"build-windows": "pkg . --targets win --output out/codecov.exe",
"prepare": "husky install",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"release": "standard-version --sign"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codecov/uploader.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/codecov/uploader/issues"
},
"homepage": "https://github.com/codecov/uploader#readme",
"dependencies": {
"fast-glob": "3.3.2",
"js-yaml": "4.1.0",
"snake-case": "3.0.4",
"undici": "5.28.4",
"validator": "13.12.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@types/jest": "29.5.14",
"@types/js-yaml": "4.0.9",
"@types/micromatch": "4.0.9",
"@types/mock-fs": "4.13.4",
"@types/node": "20.17.6",
"@types/validator": "13.12.2",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-spec-reporter": "1.0.19",
"lint-staged": "15.2.11",
"mock-fs": "5.4.1",
"pkg": "5.8.1",
"prettier": "3.4.2",
"standard-version": "9.5.0",
"testdouble": "3.20.2",
"testdouble-jest": "2.0.0",
"ts-jest": "29.2.5",
"typescript": "5.7.2"
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"eslint --fix"
],
"**/*.{json,yml,yaml,html}": [
"prettier --write"
]
},
"volta": {
"node": "20.18.0"
}
}