Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
docker
/
metadata-action
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Security
Insights
Additional navigation options
Code
Pull requests
Actions
Security
Insights
Files
49953f2
.github
__tests__
dist
hack
src
test
.dockerignore
.editorconfig
.gitattributes
.gitignore
.prettierrc.json
LICENSE
README.md
UPGRADE.md
action.yml
docker-bake.hcl
jest.config.js
package.json
tsconfig.json
yarn.lock
Breadcrumbs
metadata-action
/
package.json
Blame
Blame
Latest commit
History
History
51 lines (51 loc) · 1.19 KB
Breadcrumbs
metadata-action
/
package.json
Top
File metadata and controls
Code
Blame
51 lines (51 loc) · 1.19 KB
Raw
{ "name": "docker-metadata-action", "description": "GitHub Action to extract metadata (tags, labels) for Docker", "main": "lib/main.js", "scripts": { "build": "tsc && ncc build", "test": "jest --coverage", "format": "prettier --write **/*.ts", "format-check": "prettier --check **/*.ts", "pre-checkin": "yarn run format && yarn run build" }, "repository": { "type": "git", "url": "git+https://github.com/docker/metadata-action.git" }, "keywords": [ "actions", "docker", "metadata", "tag", "label" ], "author": "Docker", "contributors": [ { "name": "CrazyMax", "url": "https://crazymax.dev" } ], "license": "Apache-2.0", "dependencies": { "@actions/core": "^1.4.0", "@actions/github": "^5.0.0", "csv-parse": "^4.16.0", "handlebars": "^4.7.7", "moment": "^2.29.1", "semver": "^7.3.5" }, "devDependencies": { "@types/jest": "^26.0.0", "@types/node": "^14.11.2", "@vercel/ncc": "^0.24.1", "dotenv": "^8.2.0", "jest": "^26.0.1", "jest-circus": "^26.0.1", "jest-runtime": "^26.0.1", "prettier": "^2.0.4", "ts-jest": "^26.4.1", "typescript": "^4.0.3" } }
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
45
46
47
48
49
50
51
You can’t perform that action at this time.