2020-08-15 22:36:41 +00:00
|
|
|
{
|
|
|
|
"name": "docker-build-push",
|
2020-08-17 00:32:27 +00:00
|
|
|
"description": "Build and push Docker images",
|
2020-08-15 22:36:41 +00:00
|
|
|
"main": "lib/main.js",
|
|
|
|
"scripts": {
|
2022-03-15 20:59:52 +00:00
|
|
|
"build": "ncc build src/main.ts --source-map --minify --license licenses.txt",
|
|
|
|
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
|
|
|
|
"format": "eslint --fix src/**/*.ts __tests__/**/*.ts",
|
2020-08-17 00:32:27 +00:00
|
|
|
"test": "jest --coverage",
|
2022-03-15 20:59:52 +00:00
|
|
|
"all": "yarn run build && yarn run format && yarn test"
|
2020-08-15 22:36:41 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-08-24 12:04:40 +00:00
|
|
|
"url": "git+https://github.com/docker/build-push-action.git"
|
2020-08-15 22:36:41 +00:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"docker",
|
|
|
|
"build",
|
|
|
|
"push"
|
|
|
|
],
|
|
|
|
"author": "Docker",
|
|
|
|
"contributors": [
|
2020-08-18 20:54:44 +00:00
|
|
|
{
|
|
|
|
"name": "CrazyMax",
|
|
|
|
"url": "https://crazymax.dev"
|
|
|
|
}
|
2020-08-15 22:36:41 +00:00
|
|
|
],
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"dependencies": {
|
2022-05-23 09:04:16 +00:00
|
|
|
"@actions/core": "^1.8.2",
|
2022-03-18 11:03:49 +00:00
|
|
|
"@actions/exec": "^1.1.1",
|
2022-05-16 11:05:13 +00:00
|
|
|
"@actions/github": "^5.0.3",
|
2022-05-24 14:03:18 +00:00
|
|
|
"csv-parse": "^5.1.0",
|
2021-12-27 23:49:32 +00:00
|
|
|
"handlebars": "^4.7.7",
|
2022-04-13 11:04:19 +00:00
|
|
|
"semver": "^7.3.7",
|
2020-09-02 08:07:11 +00:00
|
|
|
"tmp": "^0.2.1"
|
2020-08-15 22:36:41 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-10-20 13:18:02 +00:00
|
|
|
"@types/csv-parse": "^1.2.2",
|
2022-03-15 20:59:52 +00:00
|
|
|
"@types/node": "^16.11.26",
|
|
|
|
"@types/semver": "^7.3.9",
|
|
|
|
"@types/tmp": "^0.2.3",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.14.0",
|
|
|
|
"@typescript-eslint/parser": "^5.14.0",
|
|
|
|
"@vercel/ncc": "^0.33.3",
|
|
|
|
"dotenv": "^16.0.0",
|
|
|
|
"eslint": "^8.11.0",
|
|
|
|
"eslint-config-prettier": "^8.5.0",
|
|
|
|
"eslint-plugin-jest": "^26.1.1",
|
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
|
|
"jest": "^27.2.5",
|
2021-06-23 17:21:28 +00:00
|
|
|
"prettier": "^2.3.1",
|
2022-03-15 20:59:52 +00:00
|
|
|
"ts-jest": "^27.1.2",
|
|
|
|
"ts-node": "^10.7.0",
|
|
|
|
"typescript": "^4.4.4"
|
2020-08-15 22:36:41 +00:00
|
|
|
}
|
|
|
|
}
|