mirror of
https://github.com/docker/actions-toolkit.git
synced 2024-11-23 03:16:09 +08:00
6fb52d2a23
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
93 lines
2.6 KiB
JSON
93 lines
2.6 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/artifact": "^2.1.7",
|
|
"@actions/cache": "^3.2.4",
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^6.0.0",
|
|
"@actions/http-client": "^2.2.1",
|
|
"@actions/io": "^1.1.3",
|
|
"@actions/tool-cache": "^2.0.1",
|
|
"@azure/storage-blob": "^12.15.0",
|
|
"@octokit/core": "^5.1.0",
|
|
"@octokit/plugin-rest-endpoint-methods": "^10.4.0",
|
|
"async-retry": "^1.3.3",
|
|
"csv-parse": "^5.5.6",
|
|
"gunzip-maybe": "^1.4.2",
|
|
"handlebars": "^4.7.8",
|
|
"js-yaml": "^4.1.0",
|
|
"jwt-decode": "^4.0.0",
|
|
"semver": "^7.6.2",
|
|
"tar-stream": "^3.1.7",
|
|
"tmp": "^0.2.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/csv-parse": "^1.2.2",
|
|
"@types/gunzip-maybe": "^1.4.2",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^20.12.10",
|
|
"@types/semver": "^7.5.8",
|
|
"@types/tar-stream": "^3.1.3",
|
|
"@types/tmp": "^0.2.6",
|
|
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
|
"@typescript-eslint/parser": "^7.8.0",
|
|
"dotenv": "^16.4.5",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-jest": "^28.5.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.2.5",
|
|
"rimraf": "^5.0.5",
|
|
"ts-jest": "^29.1.2",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|