generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
49 lines (49 loc) · 1.27 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": "very-good-coverage",
"version": "2.1.0",
"description": "A Github Action which helps enforce code coverage threshold using lcov",
"main": "index.js",
"scripts": {
"lint": "eslint *.js",
"format": "prettier --write .",
"check_format": "prettier --check .",
"prepare": "npm run format && ncc build index.js -o dist --source-map --license licenses.txt",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VeryGoodOpenSource/very_good_coverage.git"
},
"engines": {
"node": ">=20"
},
"keywords": [
"GitHub",
"Actions",
"Coverage",
"JavaScript",
"lcov",
"testing"
],
"author": "hi@verygood.ventures",
"license": "MIT",
"bugs": {
"url": "https://github.com/VeryGoodOpenSource/very_good_coverage/issues"
},
"homepage": "https://github.com/VeryGoodOpenSource/very_good_coverage",
"dependencies": {
"@actions/core": "^1.11.1",
"lcov-parse": "^1.0.0",
"minimatch": "^10.0.1",
"prettier": "^3.3.3"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"eslint-plugin-jest": "^28.9.0"
}
}