mirror of
https://github.com/docker/actions-toolkit.git
synced 2024-11-23 03:16:09 +08:00
49bde5a54a
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
83 lines
2.3 KiB
JSON
83 lines
2.3 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.3.1",
|
|
"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/core": "^1.10.0",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^5.1.1",
|
|
"@actions/http-client": "^2.0.1",
|
|
"@actions/io": "^1.1.2",
|
|
"@actions/tool-cache": "^2.0.1",
|
|
"async-retry": "^1.3.3",
|
|
"csv-parse": "^5.3.6",
|
|
"handlebars": "^4.7.7",
|
|
"jwt-decode": "^3.1.2",
|
|
"semver": "^7.3.8",
|
|
"tmp": "^0.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/csv-parse": "^1.2.2",
|
|
"@types/node": "^16.18.11",
|
|
"@types/semver": "^7.3.13",
|
|
"@types/tmp": "^0.2.3",
|
|
"@typescript-eslint/eslint-plugin": "^5.49.0",
|
|
"@typescript-eslint/parser": "^5.49.0",
|
|
"cpy-cli": "^4.2.0",
|
|
"dotenv": "^16.0.3",
|
|
"eslint": "^8.33.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-jest": "^26.9.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"jest": "^27.5.1",
|
|
"prettier": "^2.8.3",
|
|
"rimraf": "^4.1.2",
|
|
"ts-jest": "^27.1.5",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.9.4"
|
|
}
|
|
}
|