Files
deploy-pages/package.json

66 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2021-12-13 23:03:09 -05:00
{
"name": "deploy-pages",
2023-04-13 22:57:36 +01:00
"version": "0.0.0",
2021-12-13 23:03:09 -05:00
"description": "Deploy an actions artifact to GitHub Pages",
"main": "./dist/index.js",
"dependencies": {
2024-07-15 18:38:31 +00:00
"@actions/artifact": "^2.1.8",
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/request-error": "^5.0.1",
"http-status-messages": "^1.1.0"
2021-12-13 23:03:09 -05:00
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
Bump the non-breaking-changes group with 4 updates Bumps the non-breaking-changes group with 4 updates: [@actions/artifact](https://github.com/actions/toolkit/tree/HEAD/packages/artifact), [eslint-plugin-github](https://github.com/github/eslint-plugin-github), [nock](https://github.com/nock/nock) and [undici](https://github.com/nodejs/undici). Updates `@actions/artifact` from 2.1.3 to 2.1.7 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/artifact/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/artifact) Updates `eslint-plugin-github` from 4.10.1 to 4.10.2 - [Release notes](https://github.com/github/eslint-plugin-github/releases) - [Commits](https://github.com/github/eslint-plugin-github/compare/v4.10.1...v4.10.2) Updates `nock` from 13.5.3 to 13.5.4 - [Release notes](https://github.com/nock/nock/releases) - [Changelog](https://github.com/nock/nock/blob/main/CHANGELOG.md) - [Commits](https://github.com/nock/nock/compare/v13.5.3...v13.5.4) Updates `undici` from 6.6.2 to 6.15.0 - [Release notes](https://github.com/nodejs/undici/releases) - [Commits](https://github.com/nodejs/undici/compare/v6.6.2...v6.15.0) --- updated-dependencies: - dependency-name: "@actions/artifact" dependency-type: direct:production 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-patch dependency-group: non-breaking-changes - dependency-name: nock dependency-type: direct:development update-type: version-update:semver-patch dependency-group: non-breaking-changes - dependency-name: undici dependency-type: direct:development update-type: version-update:semver-minor dependency-group: non-breaking-changes ... Signed-off-by: dependabot[bot] <support@github.com>
2024-04-29 18:57:38 +00:00
"eslint-plugin-github": "^4.10.2",
"jest": "^29.7.0",
2023-10-30 14:58:12 -04:00
"make-coverage-badge": "^1.2.0",
Bump the non-breaking-changes group with 4 updates Bumps the non-breaking-changes group with 4 updates: [@actions/artifact](https://github.com/actions/toolkit/tree/HEAD/packages/artifact), [eslint-plugin-github](https://github.com/github/eslint-plugin-github), [nock](https://github.com/nock/nock) and [undici](https://github.com/nodejs/undici). Updates `@actions/artifact` from 2.1.3 to 2.1.7 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/artifact/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/artifact) Updates `eslint-plugin-github` from 4.10.1 to 4.10.2 - [Release notes](https://github.com/github/eslint-plugin-github/releases) - [Commits](https://github.com/github/eslint-plugin-github/compare/v4.10.1...v4.10.2) Updates `nock` from 13.5.3 to 13.5.4 - [Release notes](https://github.com/nock/nock/releases) - [Changelog](https://github.com/nock/nock/blob/main/CHANGELOG.md) - [Commits](https://github.com/nock/nock/compare/v13.5.3...v13.5.4) Updates `undici` from 6.6.2 to 6.15.0 - [Release notes](https://github.com/nodejs/undici/releases) - [Commits](https://github.com/nodejs/undici/compare/v6.6.2...v6.15.0) --- updated-dependencies: - dependency-name: "@actions/artifact" dependency-type: direct:production 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-patch dependency-group: non-breaking-changes - dependency-name: nock dependency-type: direct:development update-type: version-update:semver-patch dependency-group: non-breaking-changes - dependency-name: undici dependency-type: direct:development update-type: version-update:semver-minor dependency-group: non-breaking-changes ... Signed-off-by: dependabot[bot] <support@github.com>
2024-04-29 18:57:38 +00:00
"nock": "^13.5.4",
2024-07-15 18:38:31 +00:00
"prettier": "^3.3.3",
"undici": "^6.19.2"
2021-12-13 23:03:09 -05:00
},
"scripts": {
"all": "npm run format && npm run lint && npm run prepare && npm run test && npm run coverage-badge",
2023-04-18 00:34:47 -05:00
"coverage-badge": "make-coverage-badge --output-path ./coverage_badge.svg",
2022-09-16 22:36:35 -05:00
"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",
2023-04-18 00:34:47 -05:00
"test": "jest"
2021-12-13 23:03:09 -05:00
},
"repository": {
"type": "git",
2022-09-09 16:59:57 -05:00
"url": "git+https://github.com/actions/deploy-pages.git"
2021-12-13 23:03:09 -05:00
},
"keywords": [
"GitHub",
"Pages"
],
"author": "GitHub",
"license": "MIT",
"bugs": {
2022-09-09 16:59:57 -05:00
"url": "https://github.com/actions/deploy-pages/issues"
2021-12-13 23:03:09 -05:00
},
2023-04-13 23:11:46 +01:00
"homepage": "https://github.com/actions/deploy-pages#readme",
"jest": {
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**"
],
"coverageThreshold": {
"global": {
2023-04-18 00:32:50 -05:00
"lines": 70,
"statements": 70
2023-04-13 23:11:46 +01:00
}
}
}
2021-12-13 23:03:09 -05:00
}