mirror of
https://github.com/actions/javascript-action.git
synced 2025-12-10 04:07:00 +00:00
Bumps the npm-development group with 4 updates: [@eslint/compat](https://github.com/eslint/rewrite/tree/HEAD/packages/compat), [@jest/globals](https://github.com/jestjs/jest/tree/HEAD/packages/jest-globals), [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) and [rollup](https://github.com/rollup/rollup). Updates `@eslint/compat` from 1.3.2 to 1.4.0 - [Release notes](https://github.com/eslint/rewrite/releases) - [Changelog](https://github.com/eslint/rewrite/blob/main/packages/compat/CHANGELOG.md) - [Commits](https://github.com/eslint/rewrite/commits/compat-v1.4.0/packages/compat) Updates `@jest/globals` from 30.1.2 to 30.2.0 - [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.2.0/packages/jest-globals) Updates `jest` from 30.1.3 to 30.2.0 - [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.2.0/packages/jest) Updates `rollup` from 4.52.0 to 4.52.3 - [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.52.0...v4.52.3) --- updated-dependencies: - dependency-name: "@eslint/compat" dependency-version: 1.4.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development - dependency-name: "@jest/globals" dependency-version: 30.2.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development - dependency-name: jest dependency-version: 30.2.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development - dependency-name: rollup dependency-version: 4.52.3 dependency-type: direct:development update-type: version-update:semver-patch 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.4.0",
|
|
"@github/local-action": "^6.0.0",
|
|
"@jest/globals": "^30.2.0",
|
|
"@rollup/plugin-commonjs": "^28.0.6",
|
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
"eslint": "^9.36.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",
|
|
"make-coverage-badge": "^1.2.0",
|
|
"prettier": "^3.6.2",
|
|
"prettier-eslint": "^16.4.2",
|
|
"rollup": "^4.52.3"
|
|
},
|
|
"optionalDependencies": {
|
|
"@rollup/rollup-linux-x64-gnu": "*"
|
|
}
|
|
}
|