-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "docker-image-artifact-download",
"version": "2.1.0",
"description": "Github action to download docker image from artifact that was uploaded from another job",
"scripts": {
"build": "./node_modules/.bin/webpack --mode production --entry ./src/main.js --target node --output-path dist/"
},
"repository": {
"type": "git",
"url": "https://github.com/ishworkh/docker-image-artifact-download"
},
"keywords": [
"github",
"actions",
"docker",
"image",
"artifact",
"download"
],
"author": "Ishwor Khadka",
"license": "MIT",
"bugs": {
"url": "https://github.com/ishworkh/docker-image-artifact-download/issues"
},
"homepage": "https://github.com/ishworkh/docker-image-artifact-download",
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"dependencies": {
"@actions/core": "^1.9",
"@actions/github": "^5.1",
"docker-image-artifact": "github:ishworkh/docker-image-artifact#semver:^2.0",
"ncc": "^0.2.0",
"original-fs": "^1.2"
},
"devDependencies": {
"webpack": "^5.74",
"webpack-cli": "^4.10"
}
}