mirror of
https://github.com/actions/javascript-action.git
synced 2025-12-11 05:07:02 +00:00
Bumps the npm-development group with 7 updates: | Package | From | To | | --- | --- | --- | | [@github/local-action](https://github.com/github/local-action) | `5.0.0` | `5.1.0` | | [@jest/globals](https://github.com/jestjs/jest/tree/HEAD/packages/jest-globals) | `30.0.4` | `30.0.5` | | [eslint](https://github.com/eslint/eslint) | `9.31.0` | `9.32.0` | | [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `10.1.5` | `10.1.8` | | [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.5.1` | `5.5.3` | | [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) | `30.0.4` | `30.0.5` | | [rollup](https://github.com/rollup/rollup) | `4.45.1` | `4.46.2` | Updates `@github/local-action` from 5.0.0 to 5.1.0 - [Release notes](https://github.com/github/local-action/releases) - [Changelog](https://github.com/github/local-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/local-action/compare/v5...v5.1) Updates `@jest/globals` from 30.0.4 to 30.0.5 - [Release notes](https://github.com/jestjs/jest/releases) - [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jestjs/jest/commits/v30.0.5/packages/jest-globals) Updates `eslint` from 9.31.0 to 9.32.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v9.31.0...v9.32.0) Updates `eslint-config-prettier` from 10.1.5 to 10.1.8 - [Release notes](https://github.com/prettier/eslint-config-prettier/releases) - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v10.1.5...v10.1.8) Updates `eslint-plugin-prettier` from 5.5.1 to 5.5.3 - [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases) - [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-plugin-prettier/compare/v5.5.1...v5.5.3) Updates `jest` from 30.0.4 to 30.0.5 - [Release notes](https://github.com/jestjs/jest/releases) - [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jestjs/jest/commits/v30.0.5/packages/jest) Updates `rollup` from 4.45.1 to 4.46.2 - [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.45.1...v4.46.2) --- updated-dependencies: - dependency-name: "@github/local-action" dependency-version: 5.1.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development - dependency-name: "@jest/globals" dependency-version: 30.0.5 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: eslint dependency-version: 9.32.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development - dependency-name: eslint-config-prettier dependency-version: 10.1.8 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: eslint-plugin-prettier dependency-version: 5.5.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: jest dependency-version: 30.0.5 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: rollup dependency-version: 4.46.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development ... Signed-off-by: dependabot[bot] <support@github.com>
63 lines
1.9 KiB
JSON
63 lines
1.9 KiB
JSON
{
|
|
"name": "javascript-action",
|
|
"description": "GitHub Actions JavaScript Template",
|
|
"version": "0.0.0",
|
|
"author": "",
|
|
"type": "module",
|
|
"private": true,
|
|
"homepage": "https://github.com/actions/javascript-action#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/javascript-action.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/actions/javascript-action/issues"
|
|
},
|
|
"keywords": [
|
|
"actions"
|
|
],
|
|
"exports": {
|
|
".": "./dist/index.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"scripts": {
|
|
"bundle": "npm run format:write && npm run package",
|
|
"ci-test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
|
|
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg",
|
|
"format:write": "npx prettier --write .",
|
|
"format:check": "npx prettier --check .",
|
|
"lint": "npx eslint .",
|
|
"local-action": "npx @github/local-action . src/main.js .env",
|
|
"package": "npx rollup --config rollup.config.js",
|
|
"package:watch": "npm run package -- --watch",
|
|
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
|
|
"all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/compat": "^1.3.1",
|
|
"@github/local-action": "^5.1.0",
|
|
"@jest/globals": "^30.0.5",
|
|
"@rollup/plugin-commonjs": "^28.0.6",
|
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
"eslint": "^9.32.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-jest": "^29.0.1",
|
|
"eslint-plugin-prettier": "^5.5.3",
|
|
"jest": "^30.0.5",
|
|
"make-coverage-badge": "^1.2.0",
|
|
"prettier": "^3.6.2",
|
|
"prettier-eslint": "^16.4.2",
|
|
"rollup": "^4.46.2"
|
|
},
|
|
"optionalDependencies": {
|
|
"@rollup/rollup-linux-x64-gnu": "*"
|
|
}
|
|
}
|