This repository was archived by the owner on Mar 31, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 KB
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
{
"name": "very-good-coverage",
"version": "2.1.0",
"description": "A Github Action which helps enforce code coverage threshold using lcov",
"type": "module",
"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": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"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": "^3.0.0",
"lcov-parse": "^1.0.0",
"minimatch": "^10.2.2",
"prettier": "^3.8.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vercel/ncc": "^0.38.4",
"eslint": "^10.0.1",
"globals": "^17.3.0",
"jest": "^30.2.0",
"eslint-plugin-jest": "^29.15.0"
}
}