mirror of
https://github.com/docker/actions-toolkit.git
synced 2024-11-23 03:16:09 +08:00
f8b8b5b18d
Bumps [@actions/cache](https://github.com/actions/toolkit/tree/HEAD/packages/cache) from 3.2.2 to 3.2.3. - [Changelog](https://github.com/actions/toolkit/blob/main/packages/cache/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/cache) --- updated-dependencies: - dependency-name: "@actions/cache" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
86 lines
2.4 KiB
JSON
86 lines
2.4 KiB
JSON
{
|
|
"name": "@docker/actions-toolkit",
|
|
"version": "0.0.0+unknown",
|
|
"description": "Toolkit for Docker (GitHub) Actions",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"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\"",
|
|
"test": "jest",
|
|
"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"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/docker/actions-toolkit.git"
|
|
},
|
|
"keywords": [
|
|
"github",
|
|
"actions",
|
|
"docker",
|
|
"build",
|
|
"buildx",
|
|
"buildkit"
|
|
],
|
|
"author": "Docker Inc.",
|
|
"license": "Apache-2.0",
|
|
"packageManager": "yarn@3.6.3",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"dependencies": {
|
|
"@actions/cache": "^3.2.3",
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^6.0.0",
|
|
"@actions/http-client": "^2.2.0",
|
|
"@actions/io": "^1.1.3",
|
|
"@actions/tool-cache": "^2.0.1",
|
|
"@octokit/core": "^5.0.2",
|
|
"@octokit/plugin-rest-endpoint-methods": "^10.2.0",
|
|
"async-retry": "^1.3.3",
|
|
"csv-parse": "^5.5.3",
|
|
"handlebars": "^4.7.8",
|
|
"jwt-decode": "^4.0.0",
|
|
"semver": "^7.5.4",
|
|
"tmp": "^0.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/csv-parse": "^1.2.2",
|
|
"@types/js-yaml": "^4.0.5",
|
|
"@types/node": "^20.5.9",
|
|
"@types/semver": "^7.5.1",
|
|
"@types/tmp": "^0.2.3",
|
|
"@typescript-eslint/eslint-plugin": "^6.6.0",
|
|
"@typescript-eslint/parser": "^6.6.0",
|
|
"dotenv": "^16.3.1",
|
|
"eslint": "^8.48.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-import": "^2.28.1",
|
|
"eslint-plugin-jest": "^27.2.3",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"jest": "^29.6.4",
|
|
"prettier": "^3.0.3",
|
|
"rimraf": "^5.0.1",
|
|
"ts-jest": "^29.1.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|