-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 935 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 935 Bytes
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
{
"name": "action-container-builder",
"version": "0.2.4",
"description": "Builds container images using Docker in a reliable and efficient way",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build",
"start": "tsc && node lib/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snapserv/action-container-builder"
},
"keywords": [
"github",
"package",
"registry",
"docker",
"cache",
"build",
"push",
"image",
"container"
],
"author": "Pascal Mathis",
"license": "GPL-3.0-or-later",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^2.2.0",
"dockerode": "^3.2.0",
"fast-glob": "^3.2.2",
"tar-fs": "^2.1.0"
},
"devDependencies": {
"@types/dockerode": "^2.5.28",
"@types/node": "^14.0.1",
"@types/tar-fs": "^2.0.0",
"@zeit/ncc": "^0.22.1",
"typescript": "^3.9.2"
}
}