Files
deploy-pages/package.json

46 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2021-12-13 23:03:09 -05:00
{
"name": "deploy-pages",
"version": "0.0.1",
"description": "Deploy an actions artifact to GitHub Pages",
"main": "./dist/index.js",
"dependencies": {
2022-10-06 11:24:24 +01:00
"@actions/core": "^1.10.0",
2023-02-16 13:09:46 -06:00
"@actions/github": "^5.1.1",
2023-03-08 19:41:20 -06:00
"@actions/http-client": "^2.0.1",
"@octokit/request-error": "^3.0.3",
"http-status-messages": "^1.1.0"
2021-12-13 23:03:09 -05:00
},
"devDependencies": {
"@vercel/ncc": "^0.31.1",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-github": "^4.6.1",
"jest": "^29.5.0",
"nock": "^13.3.0",
"prettier": "^2.8.4"
2021-12-13 23:03:09 -05:00
},
"scripts": {
2022-09-16 22:52:36 -05:00
"all": "npm run format && npm run lint && npm run prepare && npm run test",
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",
2022-09-16 22:52:36 -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
},
2022-09-09 16:59:57 -05:00
"homepage": "https://github.com/actions/deploy-pages#readme"
2021-12-13 23:03:09 -05:00
}