forked from crazy-max/ghaction-github-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 882 Bytes
/
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
{
"name": "github-pages",
"description": "GitHub Action to deploy to GitHub Pages",
"main": "lib/main.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"prune": "npm prune --production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crazy-max/ghaction-docker-buildx.git"
},
"keywords": [
"actions",
"github",
"pages",
"deploy"
],
"author": "CrazyMax",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.0",
"@actions/exec": "^1.0.2",
"fs-extra": "^8.1.0"
},
"devDependencies": {
"@actions/io": "^1.0.0",
"@types/fs-extra": "^8.0.1",
"@types/node": "^13.1.0",
"prettier": "^1.19.1",
"typescript": "^3.7.4",
"typescript-formatter": "^7.2.2"
}
}