2019-08-02 09:09:37 -04:00
|
|
|
{
|
|
|
|
|
"name": "container-toolkit-template",
|
2023-09-15 12:31:10 -04:00
|
|
|
"description": "Container template action using @actions/toolkit",
|
2019-08-02 09:09:37 -04:00
|
|
|
"version": "0.0.0",
|
2023-09-15 12:31:10 -04:00
|
|
|
"author": "",
|
|
|
|
|
"private": true,
|
2025-01-08 11:58:58 -05:00
|
|
|
"type": "module",
|
2023-09-15 12:31:10 -04:00
|
|
|
"homepage": "https://github.com/actions/container-toolkit-template#readme",
|
2019-08-02 09:09:37 -04:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/actions/container-toolkit-template.git"
|
|
|
|
|
},
|
2023-09-15 12:31:10 -04:00
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/actions/container-toolkit-template/issues"
|
|
|
|
|
},
|
2019-08-02 09:09:37 -04:00
|
|
|
"keywords": [
|
|
|
|
|
"actions",
|
|
|
|
|
"container",
|
|
|
|
|
"toolkit",
|
|
|
|
|
"setup"
|
|
|
|
|
],
|
2023-09-15 12:31:10 -04:00
|
|
|
"exports": {
|
|
|
|
|
".": "./dist/index.js"
|
|
|
|
|
},
|
|
|
|
|
"engines": {
|
2025-01-09 17:35:05 -05:00
|
|
|
"node": ">=20"
|
2023-09-15 12:31:10 -04:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"bundle": "npm run format:write && npm run package",
|
2025-01-08 11:58:58 -05:00
|
|
|
"ci-test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
|
2024-02-22 16:28:55 +00:00
|
|
|
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg",
|
|
|
|
|
"format:write": "npx prettier --write .",
|
|
|
|
|
"format:check": "npx prettier --check .",
|
2025-01-08 11:58:58 -05:00
|
|
|
"lint": "npx eslint .",
|
2025-12-05 11:48:11 -05:00
|
|
|
"package": "npx rimraf ./dist && npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
|
2023-09-15 12:31:10 -04:00
|
|
|
"package:watch": "npm run package -- --watch",
|
2025-01-08 11:58:58 -05:00
|
|
|
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
|
2024-02-22 16:28:55 +00:00
|
|
|
"all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package"
|
2023-09-15 12:31:10 -04:00
|
|
|
},
|
|
|
|
|
"license": "MIT",
|
2019-08-02 09:09:37 -04:00
|
|
|
"dependencies": {
|
2026-02-18 16:17:48 -05:00
|
|
|
"@actions/core": "^3.0.0",
|
2025-05-12 13:03:48 +00:00
|
|
|
"@actions/github": "^6.0.1"
|
2019-08-02 09:09:37 -04:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-02-18 16:03:41 -05:00
|
|
|
"@eslint/compat": "^2.0.1",
|
2025-10-03 09:43:43 -04:00
|
|
|
"@jest/globals": "^30.2.0",
|
2025-12-05 11:48:11 -05:00
|
|
|
"@rollup/plugin-commonjs": "^29.0.0",
|
2025-10-31 11:04:46 -04:00
|
|
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
|
|
|
"@rollup/plugin-typescript": "^12.3.0",
|
2025-06-16 13:44:42 +00:00
|
|
|
"@types/jest": "^30.0.0",
|
2026-02-18 16:02:59 -05:00
|
|
|
"@types/node": "^25.2.2",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
2025-08-05 13:23:15 -04:00
|
|
|
"@typescript-eslint/parser": "^8.39.0",
|
2026-01-12 18:23:13 -05:00
|
|
|
"eslint": "^9.39.2",
|
2025-07-21 14:01:25 +00:00
|
|
|
"eslint-config-prettier": "^10.1.8",
|
2025-06-27 14:52:58 +00:00
|
|
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
|
|
|
"eslint-plugin-import": "^2.32.0",
|
2026-02-18 16:02:59 -05:00
|
|
|
"eslint-plugin-jest": "^29.13.0",
|
|
|
|
|
"eslint-plugin-prettier": "^5.5.5",
|
2026-02-18 16:10:19 -05:00
|
|
|
"globals": "^17.3.0",
|
2025-10-03 09:43:43 -04:00
|
|
|
"jest": "^30.2.0",
|
2023-09-15 12:31:10 -04:00
|
|
|
"make-coverage-badge": "^1.2.0",
|
2026-02-18 16:02:59 -05:00
|
|
|
"prettier": "^3.8.1",
|
2025-05-15 14:47:38 +00:00
|
|
|
"prettier-eslint": "^16.4.2",
|
2026-03-01 03:24:49 +00:00
|
|
|
"rollup": "^4.59.0",
|
2025-12-05 11:52:00 -05:00
|
|
|
"ts-jest": "^29.4.6",
|
2025-01-08 11:58:58 -05:00
|
|
|
"ts-jest-resolver": "^2.0.1",
|
|
|
|
|
"ts-node": "^10.9.2",
|
2025-10-31 11:04:46 -04:00
|
|
|
"typescript": "^5.9.3"
|
2025-01-08 11:58:58 -05:00
|
|
|
},
|
|
|
|
|
"optionalDependencies": {
|
|
|
|
|
"@rollup/rollup-linux-x64-gnu": "*"
|
2019-08-02 09:09:37 -04:00
|
|
|
}
|
|
|
|
|
}
|