2020-08-15 18:36:41 -04:00
|
|
|
{
|
|
|
|
"name": "docker-build-push",
|
2020-08-16 20:32:27 -04:00
|
|
|
"description": "Build and push Docker images",
|
2020-08-15 18:36:41 -04:00
|
|
|
"main": "lib/main.js",
|
|
|
|
"scripts": {
|
2022-03-15 16:59:52 -04: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-16 20:32:27 -04:00
|
|
|
"test": "jest --coverage",
|
2022-03-15 16:59:52 -04:00
|
|
|
"all": "yarn run build && yarn run format && yarn test"
|
2020-08-15 18:36:41 -04:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-08-24 08:04:40 -04:00
|
|
|
"url": "git+https://github.com/docker/build-push-action.git"
|
2020-08-15 18:36:41 -04:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"docker",
|
|
|
|
"build",
|
|
|
|
"push"
|
|
|
|
],
|
|
|
|
"author": "Docker",
|
|
|
|
"contributors": [
|
2020-08-18 16:54:44 -04:00
|
|
|
{
|
|
|
|
"name": "CrazyMax",
|
|
|
|
"url": "https://crazymax.dev"
|
|
|
|
}
|
2020-08-15 18:36:41 -04:00
|
|
|
],
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"dependencies": {
|
2022-08-09 07:04:20 -04:00
|
|
|
"@actions/core": "^1.9.1",
|
2022-03-18 07:03:49 -04:00
|
|
|
"@actions/exec": "^1.1.1",
|
2022-05-16 07:05:13 -04:00
|
|
|
"@actions/github": "^5.0.3",
|
2022-07-18 11:03:16 -04:00
|
|
|
"csv-parse": "^5.3.0",
|
2021-12-27 18:49:32 -05:00
|
|
|
"handlebars": "^4.7.7",
|
2022-04-13 07:04:19 -04:00
|
|
|
"semver": "^7.3.7",
|
2020-09-02 04:07:11 -04:00
|
|
|
"tmp": "^0.2.1"
|
2020-08-15 18:36:41 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-10-20 09:18:02 -04:00
|
|
|
"@types/csv-parse": "^1.2.2",
|
2022-03-15 16:59:52 -04: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 13:21:28 -04:00
|
|
|
"prettier": "^2.3.1",
|
2022-03-15 16:59:52 -04:00
|
|
|
"ts-jest": "^27.1.2",
|
|
|
|
"ts-node": "^10.7.0",
|
|
|
|
"typescript": "^4.4.4"
|
2020-08-15 18:36:41 -04:00
|
|
|
}
|
|
|
|
}
|