-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 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
{
"name": "@action-badges/core",
"version": "0.4.1",
"description": "Create SVG badges with GitHub actions",
"main": "src/index.js",
"scripts": {
"build": "ncc build src/action.js -o dist --minify",
"lint": "eslint \"**/*.{js,mjs}\"",
"prettier": "prettier --write \"**/*.{js,mjs}\"",
"prettier:check": "prettier --check \"**/*.{js,mjs}\"",
"test": "node --test --experimental-test-coverage --experimental-test-module-mocks",
"coverage": "./coverage.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/action-badges/core.git"
},
"homepage": "https://github.com/action-badges/core",
"author": "chris48s",
"license": "MIT",
"files": [
"src/**/!(*.spec).js",
"CHANGELOG.md",
"docs/*"
],
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"badge-maker": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vercel/ncc": "^0.38.1",
"cobertura": "^1.0.3",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-node-core-test": "^0.2.1",
"eslint-plugin-prettier": "^5.0.1",
"globals": "^17.4.0",
"prettier": "^3.0.3"
},
"engines": {
"node": ">=24"
},
"type": "module"
}