-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "docker-image-update-monitor-action",
"version": "1.0.0",
"description": "Monitor docker images update on image registry using GitHub Actions",
"main": "dist/index.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node16 --outfile=dist/index.js",
"test": "esbuild src/index.ts --bundle --platform=node --target=node16 --outfile=dist/index.js && act"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ActionsTools/docker-image-update-monitor-action.git"
},
"keywords": [
"action",
"Docker",
"Registry",
"Update"
],
"author": "Yujie Liu",
"license": "ISC",
"bugs": {
"url": "https://github.com/ActionsTools/docker-image-update-monitor-action/issues"
},
"homepage": "https://github.com/ActionsTools/docker-image-update-monitor-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"axios": "^1.2.0"
},
"devDependencies": {
"@types/node": "^18.11.9",
"esbuild": "^0.12.16",
"typescript": "^4.9.3"
}
}