-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "glitch-deploy",
"version": "0.0.0-development",
"description": "CLI tool to deploy a GitHub repository to glitch.com",
"bin": {
"glitch-deploy": "bin/glitch-deploy.js"
},
"scripts": {
"start": "node bin/glitch-deploy",
"test": "standard",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/glitch-tools/glitch-deploy.git"
},
"keywords": [
"glitch",
"cli",
"deploy"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/glitch-tools/glitch-deploy/issues"
},
"homepage": "https://github.com/glitch-tools/glitch-deploy#readme",
"dependencies": {
"axios": "^0.18.0",
"debug": "^3.1.0",
"envalid": "^4.1.4",
"github-url-from-git": "^1.5.0",
"github-username-regex": "^1.0.0",
"inquirer": "^5.1.0",
"lodash": "^4.17.5",
"puppeteer": "^0.13.0"
},
"devDependencies": {
"standard": "^11.0.1",
"semantic-release": "^15.1.3"
},
"optionalDependencies": {
"keytar": "^4.0.4"
}
}