forked from Sibz/github-status-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1016 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "github-status-action-v2",
"version": "1.0.0",
"private": true,
"description": "Github status action V2",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "ava",
"pack": "ncc build",
"all": "npm run build && npm test",
"push": "npm run build && npm run pack && git add * && git commit -m \"ci: update built file\" && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GuiBranco/github-status-action-v2.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "GuiBranco",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"node": "^23.3.0"
},
"devDependencies": {
"@octokit/types": "^13.6.2",
"@types/node": "22.10.1",
"@vercel/ncc": "^0.38.3",
"ava": "^6.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}