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": {
"@actions/artifact": "^2.0.0",
"@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.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-github": "^4.10.1",
"jest": "^29.7.0",
2023-10-30 14:58:12 -04:00
"make-coverage-badge": "^1.2.0",
"nock": "^13.4.0",
"prettier": "^3.1.0",
"undici": "^6.2.1"
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
}