forked from barecheck/code-coverage-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.47 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
{
"name": "code-coverage-action",
"version": "v1.0.0",
"description": "GitHub Action that posts coverage as comment in Pull request",
"main": "src/index.js",
"engines": {
"node": "20"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"@barecheck/core": "^0.4.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"chai": "^4.3.7",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"mocha": "^10.8.2",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"proxyquire": "^2.1.3",
"sinon": "^18.0.0"
},
"scripts": {
"build": "ncc build src/index.js --license licenses.txt",
"lint": "eslint --max-warnings=0 .",
"format": "prettier --write .",
"test": "mocha --recursive test",
"coverage": "nyc yarn test",
"format-check": "prettier --check .",
"check-all": "yarn format-check && yarn lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/barecheck/code-coverage-action.git"
},
"keywords": [
"code",
"coverage",
"github",
"github actions",
"CI"
],
"author": "Barecheck",
"license": "ISC",
"bugs": {
"url": "https://github.com/barecheck/code-coverage-action/issues"
},
"homepage": "https://github.com/barecheck/code-coverage-action#readme"
}