generated from actions/container-toolkit-action
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
44 lines (44 loc) · 1.08 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": "container-toolkit-template",
"version": "0.0.0",
"description": "Container template action using actions/toolkit",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.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.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"@octokit/rest": "^17.1.4",
"@types/node": "^12.0.4",
"typescript": "^3.5.1"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"prettier": "^1.17.1",
"ts-jest": "^24.0.2"
}
}