Files
hello-world-javascript-action/package.json

64 lines
2.0 KiB
JSON
Raw 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 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": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0"
2023-09-15 10:56:32 -04:00
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
2025-01-08 11:40:16 -05:00
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
2025-01-08 11:40:16 -05:00
"eslint-plugin-import": "^2.31.0",
Bump the npm-development group with 3 updates Bumps the npm-development group with 3 updates: [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest), [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) and [rollup](https://github.com/rollup/rollup). Updates `eslint-plugin-jest` from 28.10.0 to 28.11.0 - [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases) - [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v28.10.0...v28.11.0) Updates `eslint-plugin-prettier` from 5.2.1 to 5.2.3 - [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases) - [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-plugin-prettier/compare/v5.2.1...v5.2.3) Updates `rollup` from 4.30.1 to 4.31.0 - [Release notes](https://github.com/rollup/rollup/releases) - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md) - [Commits](https://github.com/rollup/rollup/compare/v4.30.1...v4.31.0) --- updated-dependencies: - dependency-name: eslint-plugin-jest dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development - dependency-name: eslint-plugin-prettier dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: rollup dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development ... Signed-off-by: dependabot[bot] <support@github.com>
2025-01-20 15:33:27 +00:00
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
2023-09-15 10:56:32 -04:00
"jest": "^29.7.0",
"make-coverage-badge": "^1.2.0",
2025-01-08 11:40:16 -05:00
"prettier": "^3.4.2",
"prettier-eslint": "^16.3.0",
Bump the npm-development group with 3 updates Bumps the npm-development group with 3 updates: [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest), [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) and [rollup](https://github.com/rollup/rollup). Updates `eslint-plugin-jest` from 28.10.0 to 28.11.0 - [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases) - [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v28.10.0...v28.11.0) Updates `eslint-plugin-prettier` from 5.2.1 to 5.2.3 - [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases) - [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-plugin-prettier/compare/v5.2.1...v5.2.3) Updates `rollup` from 4.30.1 to 4.31.0 - [Release notes](https://github.com/rollup/rollup/releases) - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md) - [Commits](https://github.com/rollup/rollup/compare/v4.30.1...v4.31.0) --- updated-dependencies: - dependency-name: eslint-plugin-jest dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development - dependency-name: eslint-plugin-prettier dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: rollup dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development ... Signed-off-by: dependabot[bot] <support@github.com>
2025-01-20 15:33:27 +00:00
"rollup": "^4.31.0"
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
}