forked from roots/issue-closer-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 997 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
{
"name": "container-toolkit-template",
"version": "0.0.0",
"description": "Container template action using actions/toolkit",
"main": "lib/main.js",
"scripts": {
"build": "ncc build src/main.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/container-toolkit-template.git"
},
"keywords": [
"actions",
"container",
"toolkit",
"setup"
],
"author": "GitHub",
"license": "ISC",
"bugs": {
"url": "https://github.com/actions/container-toolkit-template/issues"
},
"homepage": "https://github.com/actions/container-toolkit-template#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.3",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^12.0.4",
"@zeit/ncc": "^0.20.4",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2"
}
}