forked from JamesIves/github-pages-deploy-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@jamesives/github-pages-deploy-action",
"description": "GitHub action for building a project and deploying it to GitHub pages.",
"author": "James Ives <[email protected]> (https://jamesiv.es)",
"version": "3.7.1",
"license": "MIT",
"main": "lib/lib.js",
"types": "lib/lib.d.ts",
"scripts": {
"build": "rimraf lib && tsc --declaration",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write './**/*.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"
],
"dependencies": {
"@actions/core": "1.2.6",
"@actions/exec": "1.0.4",
"@actions/github": "4.0.0",
"@actions/io": "1.0.2"
},
"devDependencies": {
"@types/jest": "26.0.18",
"@types/node": "14.14.11",
"eslint": "7.15.0",
"eslint-plugin-github": "4.1.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-prettier": "^3.1.2",
"jest": "25.5.4",
"jest-circus": "26.6.3",
"prettier": "2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "25.5.1",
"typescript": "3.9.7"
}
}