generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "wait-for-other-job",
"version": "1.1.1",
"private": true,
"description": "TypeScript template action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"package": "ncc build --source-map --license licenses.txt",
"all": "npm run build && npm run format && npm run package",
"release:patch": "HUSKY=0 npm version patch -m 'chore: release version %s' && git push --follow-tags",
"release:minor": "HUSKY=0 npm version minor -m 'chore: release version %s' && git push --follow-tags",
"release:major": "HUSKY=0 npm version major -m 'chore: release version %s' && git push --follow-tags",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NathanFirmo/wait-for-other-job.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Nathan Firmo",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"@octokit/rest": "^20.0.2"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20.12.4",
"@vercel/ncc": "^0.38.1",
"husky": "^9.0.11",
"js-yaml": "^4.1.0",
"prettier": "^3.1.0",
"typescript": "^5.4.5"
}
}