-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "ghost-cli-supervisor",
"version": "0.9.1",
"description": "Ghost-CLI process manager that uses systemd to run Ghost",
"scripts": {
"test:e2e": "./e2e.sh",
"lint": "xo ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/vikaspotluri123/ghost-cli-supervisor.git"
},
"keywords": [
"ghost-cli-extension",
"ghost",
"ghost-cli"
],
"author": "Vikas Potluri <[email protected]>",
"license": "MIT",
"engines": {
"node": "^10.13.0 || ^12.10.0"
},
"bugs": {
"url": "https://github.com/vikaspotluri123/ghost-cli-supervisor/issues"
},
"homepage": "https://github.com/vikaspotluri123/ghost-cli-supervisor#readme",
"dependencies": {
"debug": "4.2.0",
"execa": "4.0.3",
"ghost-cli": "1.14.1",
"lodash.template": "4.5.0",
"portfinder": "^1.0.28"
},
"devDependencies": {
"xo": "^0.33.1"
},
"main": "index.js",
"xo": {
"rules": {
"func-names": "off"
}
},
"ghost-cli": {
"after": "ghost-cli-user",
"process-managers": {
"supervisor": "supervisor.js"
}
}
}