2019-09-11 01:44:28 -04:00
|
|
|
{
|
|
|
|
|
"name": "javascript-action",
|
2023-09-14 10:36:37 -04:00
|
|
|
"description": "GitHub Actions JavaScript Template",
|
|
|
|
|
"version": "0.0.0",
|
|
|
|
|
"author": "",
|
2024-11-15 12:30:35 -05:00
|
|
|
"type": "module",
|
2023-09-14 10:36:37 -04:00
|
|
|
"private": true,
|
|
|
|
|
"homepage": "https://github.com/actions/javascript-action#readme",
|
2019-09-11 01:44:28 -04:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/actions/javascript-action.git"
|
|
|
|
|
},
|
2023-09-14 10:36:37 -04:00
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/actions/javascript-action/issues"
|
|
|
|
|
},
|
2019-09-11 01:44:28 -04:00
|
|
|
"keywords": [
|
2024-11-15 12:30:35 -05:00
|
|
|
"actions"
|
2019-09-11 01:44:28 -04:00
|
|
|
],
|
2023-09-14 10:36:37 -04:00
|
|
|
"exports": {
|
|
|
|
|
".": "./dist/index.js"
|
|
|
|
|
},
|
|
|
|
|
"engines": {
|
2025-12-21 09:38:23 +09:00
|
|
|
"node": ">=24"
|
2023-09-14 10:36:37 -04:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"bundle": "npm run format:write && npm run package",
|
2024-11-15 12:30:35 -05:00
|
|
|
"ci-test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
|
2024-02-22 11:41:07 -05:00
|
|
|
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg",
|
|
|
|
|
"format:write": "npx prettier --write .",
|
|
|
|
|
"format:check": "npx prettier --check .",
|
2024-11-15 12:30:35 -05:00
|
|
|
"lint": "npx eslint .",
|
2025-02-21 15:32:32 -05:00
|
|
|
"local-action": "npx @github/local-action . src/main.js .env",
|
2025-12-05 11:48:59 -05:00
|
|
|
"package": "npx rimraf ./dist && npx rollup --config rollup.config.js",
|
2023-09-14 10:36:37 -04:00
|
|
|
"package:watch": "npm run package -- --watch",
|
2024-11-15 12:30:35 -05:00
|
|
|
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
|
2024-02-22 11:41:07 -05:00
|
|
|
"all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package"
|
2023-09-14 10:36:37 -04:00
|
|
|
},
|
2019-09-11 01:44:28 -04:00
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
2026-02-18 21:16:49 +00:00
|
|
|
"@actions/core": "^3.0.0"
|
2019-09-11 01:44:28 -04:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-01-19 11:19:42 +00:00
|
|
|
"@eslint/compat": "^2.0.1",
|
2026-02-18 21:11:51 +00:00
|
|
|
"@github/local-action": "^7.0.1",
|
2025-09-29 10:48:22 +00:00
|
|
|
"@jest/globals": "^30.2.0",
|
2025-11-03 09:04:37 +00:00
|
|
|
"@rollup/plugin-commonjs": "^29.0.0",
|
2025-10-27 09:20:54 +00:00
|
|
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
2026-01-12 22:40:28 +00:00
|
|
|
"eslint": "^9.39.2",
|
2025-08-05 17:25:47 +00:00
|
|
|
"eslint-config-prettier": "^10.1.8",
|
2025-06-27 14:52:08 +00:00
|
|
|
"eslint-plugin-import": "^2.32.0",
|
2026-02-09 10:59:13 +00:00
|
|
|
"eslint-plugin-jest": "^29.13.0",
|
|
|
|
|
"eslint-plugin-prettier": "^5.5.5",
|
2025-09-29 10:48:22 +00:00
|
|
|
"jest": "^30.2.0",
|
2023-09-14 10:36:37 -04:00
|
|
|
"make-coverage-badge": "^1.2.0",
|
2026-02-09 10:59:13 +00:00
|
|
|
"prettier": "^3.8.1",
|
2025-05-12 09:26:04 +00:00
|
|
|
"prettier-eslint": "^16.4.2",
|
2026-02-09 10:59:13 +00:00
|
|
|
"rollup": "^4.57.1"
|
2024-11-15 12:34:11 -05:00
|
|
|
},
|
|
|
|
|
"optionalDependencies": {
|
|
|
|
|
"@rollup/rollup-linux-x64-gnu": "*"
|
2019-09-11 01:44:28 -04:00
|
|
|
}
|
|
|
|
|
}
|