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 .",
"local-action": "npx local-action . src/main.js .env",
"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.2.5",
"@github/local-action": "^2.5.1",
2024-11-15 12:30:35 -05:00
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"eslint": "^9.18.0",
2024-11-15 12:30:35 -05:00
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
2023-09-14 10:36:37 -04:00
"jest": "^29.7.0",
"make-coverage-badge": "^1.2.0",
2024-12-11 13:59:35 -05:00
"prettier": "^3.4.2",
2024-11-15 12:30:35 -05:00
"prettier-eslint": "^16.3.0",
"rollup": "^4.31.0"
2024-11-15 12:34:11 -05:00
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
2019-09-11 01:44:28 -04:00
}
}