mirror of
https://github.com/actions/deploy-pages.git
synced 2025-12-08 08:06:15 +00:00
49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"name": "deploy-pages",
|
|
"version": "0.0.1",
|
|
"description": "Deploy an actions artifact to GitHub Pages",
|
|
"main": "./dist/index.js",
|
|
"dependencies": {
|
|
"@actions/artifact": "^0.5.2",
|
|
"@actions/core": "^1.9.1",
|
|
"@babel/plugin-transform-runtime": "^7.16.0",
|
|
"axios": "^0.24.0",
|
|
"regenerator-runtime": "^0.13.9",
|
|
"axios-retry": "^3.2.4",
|
|
"tar": "^6.1.11"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-env": "^7.16.0",
|
|
"@github/prettier-config": "0.0.4",
|
|
"@vercel/ncc": "^0.31.1",
|
|
"eslint": "^8.2.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-github": "^4.3.4",
|
|
"jest": "^27.3.1",
|
|
"nock": "^13.2.0",
|
|
"prettier": "^2.4.1"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint src",
|
|
"prepare": "ncc build src/index.js -o dist --source-map --license licenses.txt && ncc build src/pre.js -o pre --source-map --license licenses.txt",
|
|
"test": "jest",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"all": "npm run format && npm run lint && npm run prepare && npm run test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/deploy-pages.git"
|
|
},
|
|
"keywords": [
|
|
"GitHub",
|
|
"Pages"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/actions/deploy-pages/issues"
|
|
},
|
|
"homepage": "https://github.com/actions/deploy-pages#readme"
|
|
}
|