forked from sterlingwes/gh-pages-deploy-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 948 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
{
"name": "gh-pages-deploy-action",
"version": "1.1.0",
"description": "GitHub Action to build and deploy a Github Pages site using the build command & output folder you specify.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "ncc build index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sterlingwes/gh-pages-deploy-action.git"
},
"keywords": [
"GitHub Pages",
"GitHub Actions",
"Build",
"Deploy"
],
"author": "Wes Johnson",
"license": "MIT",
"bugs": {
"url": "https://github.com/sterlingwes/gh-pages-deploy-action/issues"
},
"homepage": "https://github.com/sterlingwes/gh-pages-deploy-action#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.0.1",
"@actions/github": "^1.1.0",
"@actions/io": "^1.0.1"
},
"devDependencies": {
"@zeit/ncc": "^0.20.5"
}
}