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-03-02 20:52:38 +08:00
|
|
|
"author": "James Ives <iam@jamesiv.es>",
|
2020-03-22 05:26:09 +08:00
|
|
|
"version": "3.4.2",
|
2020-03-02 20:52:38 +08:00
|
|
|
"license": "MIT",
|
|
|
|
"main": "lib/lib.js",
|
|
|
|
"types": "lib/lib.d.ts",
|
2019-08-26 23:45:48 +08:00
|
|
|
"scripts": {
|
2020-03-02 20:52:38 +08:00
|
|
|
"build": "rm -rf lib && tsc --declaration",
|
2019-11-19 23:06:27 +08:00
|
|
|
"test": "jest",
|
2020-03-07 11:36:56 +08:00
|
|
|
"lint": "eslint src/**/*.ts",
|
2020-01-19 03:41:49 +08:00
|
|
|
"format": "prettier --write './**/*.ts'"
|
2019-11-19 23:06:27 +08:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2020-03-28 22:35:26 +08:00
|
|
|
"@actions/core": "1.2.3",
|
|
|
|
"@actions/exec": "1.0.3",
|
|
|
|
"@actions/github": "2.1.1"
|
2019-11-19 23:06:27 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-03-28 22:35:26 +08:00
|
|
|
"@types/jest": "25.1.4",
|
|
|
|
"@types/node": "13.9.4",
|
|
|
|
"jest": "25.2.3",
|
|
|
|
"jest-circus": "25.2.3",
|
|
|
|
"prettier": "2.0.2",
|
2020-03-30 21:46:21 +08:00
|
|
|
"ts-jest": "25.3.0",
|
2020-03-28 22:35:26 +08:00
|
|
|
"eslint": "6.8.0",
|
|
|
|
"eslint-plugin-github": "3.4.1",
|
|
|
|
"eslint-plugin-jest": "23.8.2",
|
|
|
|
"typescript": "3.7.4"
|
2019-08-26 23:45:48 +08:00
|
|
|
}
|
2019-11-19 23:06:27 +08:00
|
|
|
}
|