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

52 lines
1.3 KiB
JSON
Raw Permalink 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",
"@docker/actions-toolkit": "^0.8.0",
2023-02-20 11:11:15 +01:00
"handlebars": "^4.7.7"
2020-08-16 00:36:41 +02:00
},
"devDependencies": {
2020-10-20 15:18:02 +02:00
"@types/csv-parse": "^1.2.2",
2023-04-17 02:09:40 +02:00
"@types/node": "^16.18.21",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
2020-08-16 00:36:41 +02:00
}
}