-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "coverbot-action",
"version": "2.0.0",
"private": true,
"description": "Action for parsing code coverage for Coverbot.",
"main": "src/main.ts",
"scripts": {
"build": "ncc build src/main.ts -o dist",
"format-check": "prettier --check '**/*.ts'",
"format": "prettier --write '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coverbot-io/coverbot-action"
},
"author": "coverbot-io",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"@actions/http-client": "^2.0.1",
"decimal.js-light": "^2.5.1",
"lcov-parse": "^1.0.0"
},
"devDependencies": {
"@types/lcov-parse": "^1.0.0",
"@types/node": "^20.14.8",
"@typescript-eslint/parser": "^7.13.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-jest": "^28.6.0",
"jest": "^29.5.0",
"js-yaml": "^4.1.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.0",
"typescript": "^5.5.2"
}
}