2023-01-17 18:53:57 +08:00
|
|
|
{
|
|
|
|
"name": "@docker/actions-toolkit",
|
|
|
|
"description": "Toolkit for Docker (GitHub) Actions",
|
|
|
|
"scripts": {
|
2023-01-23 04:22:42 +08:00
|
|
|
"build": "tsc",
|
2023-01-17 18:53:57 +08:00
|
|
|
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
|
|
|
|
"format": "eslint --fix src/**/*.ts __tests__/**/*.ts",
|
2023-01-23 05:50:08 +08:00
|
|
|
"test": "jest --coverage"
|
2023-01-17 18:53:57 +08:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/docker/actions-toolkit.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
2023-01-23 05:50:08 +08:00
|
|
|
"github",
|
2023-01-17 18:53:57 +08:00
|
|
|
"actions",
|
|
|
|
"docker",
|
|
|
|
"build",
|
2023-01-23 05:50:08 +08:00
|
|
|
"buildx",
|
|
|
|
"buildkit"
|
2023-01-17 18:53:57 +08:00
|
|
|
],
|
2023-01-23 04:22:42 +08:00
|
|
|
"author": "Docker Inc.",
|
2023-01-17 18:53:57 +08:00
|
|
|
"license": "Apache-2.0",
|
2023-01-23 05:50:08 +08:00
|
|
|
"main": "lib/index.js",
|
|
|
|
"types": "lib/index.d.ts",
|
|
|
|
"directories": {
|
|
|
|
"lib": "lib",
|
|
|
|
"test": "__tests__"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"lib"
|
|
|
|
],
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
2023-01-17 18:53:57 +08:00
|
|
|
"dependencies": {
|
|
|
|
"@actions/core": "^1.10.0",
|
|
|
|
"@actions/exec": "^1.1.1",
|
|
|
|
"@actions/github": "^5.1.1",
|
|
|
|
"csv-parse": "^5.3.3",
|
|
|
|
"jwt-decode": "^3.1.2",
|
|
|
|
"semver": "^7.3.7",
|
|
|
|
"tmp": "^0.2.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/csv-parse": "^1.2.2",
|
|
|
|
"@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",
|
2023-01-23 04:22:42 +08:00
|
|
|
"cpy-cli": "^4.2.0",
|
2023-01-17 18:53:57 +08:00
|
|
|
"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",
|
|
|
|
"prettier": "^2.3.1",
|
|
|
|
"ts-jest": "^27.1.2",
|
|
|
|
"ts-node": "^10.7.0",
|
|
|
|
"typescript": "^4.4.4"
|
|
|
|
}
|
|
|
|
}
|