generated from myrotvorets/ts-action-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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
{
"name": "set-commit-status-action",
"version": "2.0.1",
"description": "GitHub action to update the status to the given commit",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"package": "ncc build --minify",
"test": "exit 0",
"all": "npm run build && npm run lint:fix && npm run package && npm test"
},
"keywords": [],
"author": "Myrotvorets <support@myrotvorets.center> (https://myrotvorets.center/)",
"license": "MIT",
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.0.0",
"@octokit/webhooks-types": "^7.3.1",
"@types/node": "^22.0.0",
"@vercel/ncc": "^0.38.1",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myrotvorets-team/set-commit-status-action.git"
},
"bugs": {
"url": "https://github.com/myrotvorets-team/set-commit-status-action/issues"
},
"homepage": "https://github.com/myrotvorets-team/set-commit-status-action#readme",
"engines": {
"node": "22"
}
}