2019-08-26 23:45:48 +08:00
|
|
|
{
|
|
|
|
"name": "github-pages-deploy-action",
|
|
|
|
"description": "GitHub action for building a project and deploying it to GitHub pages.",
|
2020-01-05 23:50:14 +08:00
|
|
|
"version": "3.1.1",
|
2019-11-19 23:06:27 +08:00
|
|
|
"main": "lib/main.js",
|
2019-08-26 23:45:48 +08:00
|
|
|
"scripts": {
|
2019-11-19 23:06:27 +08:00
|
|
|
"build": "tsc",
|
|
|
|
"test": "jest",
|
|
|
|
"lint": "tslint -p tsconfig.json --project '.' || (echo Project needs formatting)",
|
|
|
|
"format": "prettier --write './src/*.ts'"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/JamesIves/github-pages-deploy-action.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/JamesIves/github-pages-deploy-action/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/JamesIves/github-pages-deploy-action",
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"node",
|
|
|
|
"setup",
|
|
|
|
"build",
|
|
|
|
"deploy",
|
|
|
|
"gh-pages",
|
|
|
|
"pages",
|
|
|
|
"github",
|
|
|
|
"deploy",
|
|
|
|
"deployment"
|
|
|
|
],
|
|
|
|
"author": "James Ives",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2019-11-22 23:01:17 +08:00
|
|
|
"@actions/core": "^1.2.0",
|
2019-12-15 22:46:44 +08:00
|
|
|
"@actions/exec": "^1.0.2",
|
2019-12-15 07:14:09 +08:00
|
|
|
"@actions/github": "^2.0.0"
|
2019-11-19 23:06:27 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-12-27 23:53:27 +08:00
|
|
|
"@types/jest": "^24.0.25",
|
2020-01-01 01:37:25 +08:00
|
|
|
"@types/node": "^13.1.2",
|
2019-11-19 23:06:27 +08:00
|
|
|
"jest": "^24.8.0",
|
|
|
|
"jest-circus": "^24.7.1",
|
|
|
|
"lodash": "^4.17.15",
|
2019-11-22 23:01:34 +08:00
|
|
|
"prettier": "^1.19.1",
|
2019-11-25 23:55:11 +08:00
|
|
|
"ts-jest": "^24.2.0",
|
2019-11-19 23:06:27 +08:00
|
|
|
"tslint": "^5.20.0",
|
2019-12-23 23:36:58 +08:00
|
|
|
"typescript": "^3.7.4"
|
2019-08-26 23:45:48 +08:00
|
|
|
}
|
2019-11-19 23:06:27 +08:00
|
|
|
}
|