Files

64 lines
2.0 KiB
JSON
Raw Permalink Normal View History

2019-08-03 14:44:52 -07:00
{
2019-09-06 15:17:38 -07:00
"name": "hello-world-javascript-action",
2023-09-15 10:56:32 -04:00
"description": "This action prints `Hello, World!` or `Hello, <who-to-greet>!` to the log",
2019-08-03 14:44:52 -07:00
"version": "1.0.0",
2023-09-15 10:56:32 -04:00
"author": "",
"private": true,
2025-01-08 11:40:16 -05:00
"type": "module",
2023-09-15 10:56:32 -04:00
"homepage": "https://github.com/actions/hello-world-javascript-action#readme",
2019-09-06 15:17:38 -07:00
"repository": {
"type": "git",
"url": "git+https://github.com/actions/hello-world-javascript-action.git"
},
"bugs": {
"url": "https://github.com/actions/hello-world-javascript-action/issues"
},
2023-09-15 10:56:32 -04:00
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
2025-01-09 17:25:05 -05:00
"node": ">=20"
2023-09-15 10:56:32 -04:00
},
"scripts": {
"bundle": "npm run format:write && npm run package",
2025-01-08 11:40:16 -05:00
"ci-test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
2024-02-22 11:38:39 -05: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:40:16 -05:00
"lint": "npx eslint .",
"package": "npx rimraf ./dist && npx rollup --config rollup.config.js",
2023-09-15 10:56:32 -04:00
"package:watch": "npm run package -- --watch",
2025-01-08 11:40:16 -05:00
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
2024-02-22 11:38:39 -05:00
"all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package"
2023-09-15 10:56:32 -04:00
},
"license": "MIT",
2019-08-06 20:54:32 -07:00
"dependencies": {
2026-01-12 22:56:11 +00:00
"@actions/core": "^2.0.2",
2026-01-12 22:56:20 +00:00
"@actions/github": "^7.0.0"
2023-09-15 10:56:32 -04:00
},
"devDependencies": {
2026-01-19 17:23:20 +00:00
"@eslint/compat": "^2.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-15 10:56:32 -04:00
"make-coverage-badge": "^1.2.0",
"prettier": "^3.8.1",
"prettier-eslint": "^16.4.2",
"rollup": "^4.57.1"
2025-01-08 11:40:16 -05:00
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
2019-08-06 20:54:32 -07:00
}
2019-08-03 14:44:52 -07:00
}