mirror of
https://github.com/actions/configure-pages.git
synced 2025-12-08 08:06:09 +00:00
Bumps the non-breaking-changes group with 4 updates in the / directory: [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core), [espree](https://github.com/eslint/js), [@vercel/ncc](https://github.com/vercel/ncc) and [eslint-plugin-github](https://github.com/github/eslint-plugin-github). Updates `@actions/core` from 1.10.1 to 1.11.1 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Updates `espree` from 10.1.0 to 10.3.0 - [Release notes](https://github.com/eslint/js/releases) - [Changelog](https://github.com/eslint/js/blob/main/release-please-config.json) - [Commits](https://github.com/eslint/js/compare/v10.1.0...espree-v10.3.0) Updates `@vercel/ncc` from 0.38.1 to 0.38.3 - [Release notes](https://github.com/vercel/ncc/releases) - [Commits](https://github.com/vercel/ncc/compare/0.38.1...0.38.3) Updates `eslint-plugin-github` from 5.0.1 to 5.1.4 - [Release notes](https://github.com/github/eslint-plugin-github/releases) - [Commits](https://github.com/github/eslint-plugin-github/compare/v5.0.1...v5.1.4) --- updated-dependencies: - dependency-name: "@actions/core" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: non-breaking-changes - dependency-name: espree dependency-type: direct:production update-type: version-update:semver-minor dependency-group: non-breaking-changes - dependency-name: "@vercel/ncc" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: non-breaking-changes - dependency-name: eslint-plugin-github dependency-type: direct:development update-type: version-update:semver-minor dependency-group: non-breaking-changes ... Signed-off-by: dependabot[bot] <support@github.com>
42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
{
|
|
"private": true,
|
|
"name": "configure-pages",
|
|
"version": "1.0.0",
|
|
"description": "A GitHub Action to enable Pages and extract various metadata about a site. It can also be used to configure various static site generators we support as starter workflows.",
|
|
"main": "./dist/index.js",
|
|
"scripts": {
|
|
"all": "npm run format && npm run lint && npm run prepare && npm run test",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"lint": "DEBUG=eslint:cli-engine eslint --fix .",
|
|
"lint:check": "DEBUG=eslint:cli-engine eslint .",
|
|
"prepare": "ncc build src/index.js -o dist --source-map --license licenses.txt",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/configure-pages.git"
|
|
},
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/actions/configure-pages/issues"
|
|
},
|
|
"homepage": "https://github.com/actions/configure-pages#readme",
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/github": "^6.0.0",
|
|
"error-stack-parser": "^2.1.4",
|
|
"espree": "^10.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@octokit/request-error": "^5.0.1",
|
|
"@vercel/ncc": "^0.38.3",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-github": "^5.1.4",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^2.8.7"
|
|
}
|
|
}
|