Files
javascript-action/package.json
T

63 lines
1.9 KiB
JSON
Raw 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-01-09 17:23:41 -05:00
"node": ">=20"
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",
2024-11-15 12:30:35 -05:00
"package": "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": {
2024-10-21 15:10:37 +00:00
"@actions/core": "^1.11.1"
2019-09-11 01:44:28 -04:00
},
"devDependencies": {
"@eslint/compat": "^1.4.0",
"@github/local-action": "^6.0.2",
"@jest/globals": "^30.2.0",
"@rollup/plugin-commonjs": "^28.0.9",
"@rollup/plugin-node-resolve": "^16.0.3",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.2.0",
2023-09-14 10:36:37 -04:00
"make-coverage-badge": "^1.2.0",
"prettier": "^3.6.2",
"prettier-eslint": "^16.4.2",
"rollup": "^4.52.5"
2024-11-15 12:34:11 -05:00
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
2019-09-11 01:44:28 -04:00
}
}