1
0
Files
build-push-action/package.json
T

60 lines
1.5 KiB
JSON
Raw Normal View History

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