forked from clearlyip/code-coverage-report-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.49 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
{
"name": "code-coverage-report-action",
"version": "4.0.0",
"description": "",
"main": "dist/index.js",
"private": true,
"scripts": {
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"package": "ncc build src/main.ts --source-map --license licenses.txt",
"watch": "ncc build src/main.ts --watch",
"test": "jest",
"all": "npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tm1000/code-coverage-report-action.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/tm1000/code-coverage-report-action/issues"
},
"homepage": "https://github.com/tm1000/code-coverage-report-action#readme",
"dependencies": {
"@actions/artifact": "^1.1.2",
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"adm-zip": "^0.5.10",
"fast-xml-parser": "^4.3.2",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/adm-zip": "^0.5.5",
"@types/node": "^20.10.0",
"@typescript-eslint/parser": "^6.12.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.54.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.6.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "3.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
}
}