Files

63 lines
1.9 KiB
JSON
Raw Permalink Normal View History

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",
"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",
"@github/local-action": "^7.0.1",
"@jest/globals": "^30.2.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.13.0",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.2.0",
2023-09-14 10:36:37 -04:00
"make-coverage-badge": "^1.2.0",
"prettier": "^3.8.1",
"prettier-eslint": "^16.4.2",
"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
}
}