-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "@action-badges/poetry-badges",
"description": "Poetry Action Badges",
"version": "0.0.0",
"private": true,
"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/poetry-badges.git"
},
"homepage": "https://github.com/action-badges/poetry-badges",
"author": "chris48s",
"license": "MIT",
"dependencies": {
"@action-badges/core": "^0.3.1",
"@actions/core": "^1.11.1",
"@renovatebot/pep440": "^4.0.1",
"smol-toml": "^1.3.1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"c8": "^10.1.3",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-prettier": "^5.2.3",
"mocha": "^11.1.0",
"prettier": "^3.4.2"
},
"engines": {
"node": ">= 20"
},
"type": "module"
}