-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
51 lines (51 loc) · 1.31 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": "coverage-reporter-action",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "tap test/*.test.js",
"posttest": "tap --coverage-report=json-summary",
"build": "ncc build src/index.js --license licenses.txt",
"ghadocs": "github-action-readme-generator --readme README.md && git add README.md",
"before-pr": "npm run test && npm run build && npm run ghadocs"
},
"tap": {
"check-coverage": false,
"nyc-arg": [
"--include=src/**",
"--all"
]
},
"engines": {
"node": ">=16.9.0"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "git+https://github.com/sidx1024/coverage-reporter-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sidx1024/coverage-reporter-action/issues"
},
"homepage": "https://github.com/sidx1024/coverage-reporter-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"github-action-readme-generator": "^1.2.7",
"husky": "^6.0.0",
"lint-staged": "^11.1.4",
"prettier": "^2.7.1",
"tap": "^16.3.0"
},
"lint-staged": {
"*.{js,md,json,yml}": "prettier --write"
}
}