mirror of
https://github.com/actions/javascript-action.git
synced 2025-04-05 23:09:41 +00:00
Bumps the npm-development group with 5 updates: | Package | From | To | | --- | --- | --- | | [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.24.6` | `7.24.7` | | [@babel/eslint-parser](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-parser) | `7.24.6` | `7.24.7` | | [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.24.6` | `7.24.7` | | [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) | `28.5.0` | `28.6.0` | | [prettier](https://github.com/prettier/prettier) | `3.3.0` | `3.3.1` | Updates `@babel/core` from 7.24.6 to 7.24.7 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.24.7/packages/babel-core) Updates `@babel/eslint-parser` from 7.24.6 to 7.24.7 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.24.7/eslint/babel-eslint-parser) Updates `@babel/preset-env` from 7.24.6 to 7.24.7 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.24.7/packages/babel-preset-env) Updates `eslint-plugin-jest` from 28.5.0 to 28.6.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.5.0...v28.6.0) Updates `prettier` from 3.3.0 to 3.3.1 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.3.0...3.3.1) --- updated-dependencies: - dependency-name: "@babel/core" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: "@babel/eslint-parser" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: "@babel/preset-env" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: eslint-plugin-jest dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development ... Signed-off-by: dependabot[bot] <support@github.com>
83 lines
2.1 KiB
JSON
83 lines
2.1 KiB
JSON
{
|
|
"name": "javascript-action",
|
|
"description": "GitHub Actions JavaScript Template",
|
|
"version": "0.0.0",
|
|
"author": "",
|
|
"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": [
|
|
"GitHub",
|
|
"Actions",
|
|
"JavaScript"
|
|
],
|
|
"exports": {
|
|
".": "./dist/index.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"scripts": {
|
|
"bundle": "npm run format:write && npm run package",
|
|
"ci-test": "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 . -c ./.github/linters/.eslintrc.yml",
|
|
"package": "npx ncc build src/index.js -o dist --source-map --license licenses.txt",
|
|
"package:watch": "npm run package -- --watch",
|
|
"test": "npx jest",
|
|
"all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package"
|
|
},
|
|
"license": "MIT",
|
|
"eslintConfig": {
|
|
"extends": "./.github/linters/.eslintrc.yml"
|
|
},
|
|
"jest": {
|
|
"verbose": true,
|
|
"clearMocks": true,
|
|
"testEnvironment": "node",
|
|
"moduleFileExtensions": [
|
|
"js"
|
|
],
|
|
"testMatch": [
|
|
"**/*.test.js"
|
|
],
|
|
"testPathIgnorePatterns": [
|
|
"/node_modules/",
|
|
"/dist/"
|
|
],
|
|
"coverageReporters": [
|
|
"json-summary",
|
|
"text",
|
|
"lcov"
|
|
],
|
|
"collectCoverage": true,
|
|
"collectCoverageFrom": [
|
|
"./src/**"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.24.7",
|
|
"@babel/eslint-parser": "^7.24.7",
|
|
"@babel/preset-env": "^7.24.7",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"babel-preset-jest": "^29.6.3",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-github": "^4.10.2",
|
|
"eslint-plugin-jest": "^28.6.0",
|
|
"jest": "^29.7.0",
|
|
"make-coverage-badge": "^1.2.0",
|
|
"prettier": "^3.3.1"
|
|
}
|
|
}
|