-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 971 Bytes
/
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
{
"name": "limgo-badge-action",
"version": "1.0.1",
"description": "This action creates a custom badge for the test coverage summary from limgo",
"main": "index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"start-dev": "tsc && node lib/main.js",
"build": "tsc && ncc build lib/main.js",
"format": "prettier --write **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gotesttools/limgo-badge-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gotesttools/limgo-badge-action/issues"
},
"homepage": "https://github.com/gotesttools/limgo-badge-action#readme",
"devDependencies": {
"@types/node": "^18.11.9",
"@vercel/ncc": "^0.34.0",
"prettier": "^2.8.0",
"typescript": "^4.9.3"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.1"
}
}