-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "@action-badges/core",
"version": "0.3.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,cjs}\"",
"prettier": "prettier --write \"**/*.{js,cjs}\"",
"prettier:check": "prettier --check \"**/*.{js,cjs}\"",
"test": "c8 --reporter=text mocha \"src/**/*.spec.js\"",
"coverage": "c8 report --reporter=cobertura"
},
"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": "^1.2.7",
"@actions/github": "^6.0.0",
"badge-maker": "^4.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"c8": "^10.1.2",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-prettier": "^5.0.1",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"sinon": "^19.0.0"
},
"engines": {
"node": ">= 20"
},
"type": "module"
}