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": {
|
2023-12-19 14:46:02 -06:00
|
|
|
"@actions/artifact": "^2.0.0",
|
2023-12-06 21:02:09 +00:00
|
|
|
"@actions/core": "^1.10.1",
|
2023-12-22 11:40:57 -06:00
|
|
|
"@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": {
|
2023-11-27 18:46:34 +00:00
|
|
|
"@vercel/ncc": "^0.38.1",
|
2023-12-22 19:59:23 +00:00
|
|
|
"eslint": "^8.56.0",
|
2023-12-06 21:30:21 +00:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2023-11-20 20:59:36 +00:00
|
|
|
"eslint-plugin-github": "^4.10.1",
|
2023-11-20 20:41:05 +00:00
|
|
|
"jest": "^29.7.0",
|
2023-10-30 14:58:12 -04:00
|
|
|
"make-coverage-badge": "^1.2.0",
|
2023-12-07 05:41:02 +00:00
|
|
|
"nock": "^13.4.0",
|
2023-11-29 21:29:04 +00:00
|
|
|
"prettier": "^3.1.0",
|
2023-12-22 21:04:34 +00:00
|
|
|
"undici": "^6.2.1"
|
2021-12-13 23:03:09 -05:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2023-04-17 23:18:55 -05:00
|
|
|
"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 .",
|
2022-09-16 22:52:58 -05:00
|
|
|
"lint": "DEBUG=eslint:cli-engine eslint --fix .",
|
|
|
|
|
"lint:check": "DEBUG=eslint:cli-engine eslint .",
|
2022-11-04 12:19:31 -04:00
|
|
|
"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
|
|
|
}
|