2023-01-17 18:53:57 +08:00
|
|
|
{
|
|
|
|
"name": "@docker/actions-toolkit",
|
2023-02-18 05:31:14 +08:00
|
|
|
"version": "0.0.0+unknown",
|
2023-01-17 18:53:57 +08:00
|
|
|
"description": "Toolkit for Docker (GitHub) Actions",
|
|
|
|
"scripts": {
|
2023-01-23 04:22:42 +08:00
|
|
|
"build": "tsc",
|
2023-02-01 19:46:43 +08:00
|
|
|
"lint": "yarn run prettier && yarn run eslint",
|
|
|
|
"format": "yarn run prettier:fix && yarn run eslint:fix",
|
|
|
|
"eslint": "eslint --max-warnings=0 .",
|
|
|
|
"eslint:fix": "eslint --fix .",
|
|
|
|
"prettier": "prettier --check \"./**/*.ts\"",
|
|
|
|
"prettier:fix": "prettier --write \"./**/*.ts\"",
|
2023-01-23 08:38:28 +08:00
|
|
|
"test": "jest",
|
2023-03-26 05:01:00 +08:00
|
|
|
"test:coverage": "jest --coverage",
|
|
|
|
"test:itg": "jest -c jest.config.itg.ts --runInBand --detectOpenHandles",
|
|
|
|
"test:itg-list": "jest -c jest.config.itg.ts --listTests",
|
|
|
|
"test:itg-coverage": "jest --coverage -c jest.config.itg.ts --runInBand --detectOpenHandles"
|
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-30 10:21:58 +08:00
|
|
|
"packageManager": "yarn@3.3.1",
|
2023-02-21 15:12:26 +08:00
|
|
|
"main": "lib/index.js",
|
|
|
|
"types": "lib/index.d.ts",
|
2023-01-23 05:50:08 +08:00
|
|
|
"directories": {
|
|
|
|
"lib": "lib",
|
|
|
|
"test": "__tests__"
|
|
|
|
},
|
|
|
|
"files": [
|
2023-03-02 18:01:19 +08:00
|
|
|
"lib"
|
2023-01-23 05:50:08 +08:00
|
|
|
],
|
|
|
|
"publishConfig": {
|
2023-01-30 18:15:39 +08:00
|
|
|
"access": "public",
|
|
|
|
"registry": "https://registry.npmjs.org/"
|
2023-01-23 05:50:08 +08:00
|
|
|
},
|
2023-01-17 18:53:57 +08:00
|
|
|
"dependencies": {
|
2023-08-08 15:38:56 +08:00
|
|
|
"@actions/cache": "^3.2.2",
|
2023-01-17 18:53:57 +08:00
|
|
|
"@actions/core": "^1.10.0",
|
|
|
|
"@actions/exec": "^1.1.1",
|
|
|
|
"@actions/github": "^5.1.1",
|
2023-08-08 15:43:54 +08:00
|
|
|
"@actions/http-client": "^2.1.1",
|
2023-08-11 19:55:04 +08:00
|
|
|
"@actions/io": "^1.1.3",
|
2023-02-01 21:21:44 +08:00
|
|
|
"@actions/tool-cache": "^2.0.1",
|
2023-06-15 22:25:58 +08:00
|
|
|
"@octokit/plugin-rest-endpoint-methods": "^7.2.3",
|
2023-03-02 20:48:24 +08:00
|
|
|
"async-retry": "^1.3.3",
|
2023-08-26 06:19:29 +08:00
|
|
|
"csv-parse": "^5.5.0",
|
2023-08-03 04:03:10 +08:00
|
|
|
"handlebars": "^4.7.8",
|
2023-08-27 18:23:24 +08:00
|
|
|
"js-yaml": "^4.1.0",
|
2023-01-17 18:53:57 +08:00
|
|
|
"jwt-decode": "^3.1.2",
|
2023-07-10 22:02:16 +08:00
|
|
|
"semver": "^7.5.4",
|
2023-01-17 18:53:57 +08:00
|
|
|
"tmp": "^0.2.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/csv-parse": "^1.2.2",
|
2023-08-27 18:23:24 +08:00
|
|
|
"@types/js-yaml": "^4.0.5",
|
2023-09-05 17:25:22 +08:00
|
|
|
"@types/node": "^20.5.9",
|
2023-05-17 20:13:50 +08:00
|
|
|
"@types/semver": "^7.5.0",
|
2023-01-17 18:53:57 +08:00
|
|
|
"@types/tmp": "^0.2.3",
|
2023-03-27 02:58:13 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.56.0",
|
|
|
|
"@typescript-eslint/parser": "^5.56.0",
|
2023-01-23 04:22:42 +08:00
|
|
|
"cpy-cli": "^4.2.0",
|
2023-01-30 10:36:26 +08:00
|
|
|
"dotenv": "^16.0.3",
|
2023-03-27 02:58:13 +08:00
|
|
|
"eslint": "^8.36.0",
|
|
|
|
"eslint-config-prettier": "^8.8.0",
|
2023-02-01 19:46:43 +08:00
|
|
|
"eslint-plugin-import": "^2.27.5",
|
2023-03-27 02:58:13 +08:00
|
|
|
"eslint-plugin-jest": "^27.2.1",
|
2023-01-30 10:36:26 +08:00
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2023-03-27 02:58:13 +08:00
|
|
|
"jest": "^29.5.0",
|
|
|
|
"prettier": "^2.8.7",
|
|
|
|
"rimraf": "^4.4.1",
|
|
|
|
"ts-jest": "^29.0.5",
|
2023-01-30 10:36:26 +08:00
|
|
|
"ts-node": "^10.9.1",
|
2023-03-27 02:58:13 +08:00
|
|
|
"typescript": "^4.9.5"
|
2023-01-17 18:53:57 +08:00
|
|
|
}
|
|
|
|
}
|