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.16 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": "setup-job-workspacce-action",
"version": "0.0.0",
"private": true,
"description": "A action create workspace to checkout repository for each jobs",
"main": "lib/main.js",
"engines": {
"node": ">=20.18.1"
},
"scripts": {
"build": "tsc",
"package": "ncc build --source-map -o dist/main src/main.ts && ncc build --source-map -o dist/post src/post.ts",
"package:commit": "npm run package && git add -u dist && git commit -m 'npm run package'",
"test": "jest",
"test:watch": "jest --watch",
"all": "npm run build && npm run package && npm test",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeNA/setup-job-workspace-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.3"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@vercel/ncc": "^0.38.3",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"husky": "^9.1.7"
}
}