-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "coverage-upload-action",
"version": "2.2.1",
"description": "Parses coverage file and uploads to remote endpoint",
"author": "Neo Financial Engineering",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/neofinancial/coverage-upload-action"
},
"private": true,
"main": "build/main.js",
"keywords": [
"actions",
"coverage",
"code coverage"
],
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "eslint \"**/*.{ts,js}\"",
"test": "jest",
"clean": "rimraf build",
"clean:modules": "rimraf node_modules"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/action": "^5.0.6",
"axios": "^1.6.7",
"is-plain-object": "^5.0.0",
"lcov-parse": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lcov-parse": "^1.0.2",
"eslint": "^8.56.0",
"eslint-config-neo": "^0.9.0",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}