-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "ci-badges-action",
"version": "1.7.0",
"description": "Badges for test results and code coverage",
"private": true,
"main": "index.js",
"type": "module",
"scripts": {
"build": "ncc build index.js",
"lint": "eslint src test *.js",
"test": "mocha src",
"test:e2e": "mocha test",
"test:ci": "c8 -r cobertura --all --src src -x \"**/*.test.js\" -x \"**/types.js\" mocha -R mocha-junit-reporter src test || exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GaelGirodon/ci-badges-action.git"
},
"keywords": [
"github",
"actions",
"badge",
"ci",
"test",
"coverage"
],
"author": "Gaël Girodon <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/GaelGirodon/ci-badges-action/issues"
},
"homepage": "https://github.com/GaelGirodon/ci-badges-action#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.5.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@vercel/ncc": "^0.38.3",
"c8": "^10.1.2",
"eslint": "^9.16.0",
"globals": "^15.12.0",
"mocha": "^10.8.2",
"mocha-junit-reporter": "^2.2.1"
}
}