2019-08-26 23:45:48 +08:00
|
|
|
{
|
2020-05-17 06:11:24 +08:00
|
|
|
"name": "@jamesives/github-pages-deploy-action",
|
2019-08-26 23:45:48 +08:00
|
|
|
"description": "GitHub action for building a project and deploying it to GitHub pages.",
|
2020-04-04 19:54:06 +08:00
|
|
|
"author": "James Ives <iam@jamesiv.es> (https://jamesiv.es)",
|
2020-10-18 04:06:48 +08:00
|
|
|
"version": "3.7.1",
|
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-10-08 21:25:43 +08:00
|
|
|
"build": "rimraf 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-09-26 08:34:01 +08:00
|
|
|
"@actions/core": "1.2.6",
|
2020-04-29 19:22:58 +08:00
|
|
|
"@actions/exec": "1.0.4",
|
2020-06-29 21:59:15 +08:00
|
|
|
"@actions/github": "4.0.0",
|
2020-04-12 01:57:56 +08:00
|
|
|
"@actions/io": "1.0.2"
|
2019-11-19 23:06:27 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-09-28 01:33:55 +08:00
|
|
|
"@types/jest": "26.0.14",
|
2020-10-21 22:10:59 +08:00
|
|
|
"@types/node": "14.14.0",
|
2020-10-14 20:00:14 +08:00
|
|
|
"eslint": "7.11.0",
|
2020-10-02 10:20:40 +08:00
|
|
|
"eslint-plugin-github": "4.1.1",
|
2020-10-07 09:54:00 +08:00
|
|
|
"eslint-plugin-jest": "24.1.0",
|
2020-04-02 00:58:25 +08:00
|
|
|
"eslint-plugin-prettier": "^3.1.2",
|
2020-05-08 10:50:46 +08:00
|
|
|
"jest": "25.5.4",
|
2020-10-21 22:32:09 +08:00
|
|
|
"jest-circus": "26.6.0",
|
2020-09-17 00:06:19 +08:00
|
|
|
"prettier": "2.1.2",
|
2020-10-08 21:25:43 +08:00
|
|
|
"rimraf": "^3.0.2",
|
2020-05-11 23:28:04 +08:00
|
|
|
"ts-jest": "25.5.1",
|
2020-07-19 22:54:23 +08:00
|
|
|
"typescript": "3.9.7"
|
2019-08-26 23:45:48 +08:00
|
|
|
}
|
2019-11-19 23:06:27 +08:00
|
|
|
}
|