forked from msaladna/ghost-cli-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.74 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "ghost-cli",
"version": "1.25.3-lite",
"description": "CLI Tool for installing & updating Ghost",
"author": "Ghost Foundation",
"homepage": "https://ghost.org",
"keywords": [
"ghost",
"cli"
],
"files": [
"bin",
"lib",
"extensions",
"yarn.lock"
],
"repository": {
"type": "git",
"url": "https://github.com/TryGhost/Ghost-CLI/"
},
"bugs": "https://github.com/TryGhost/Ghost-CLI/issues",
"contributors": "https://github.com/TryGhost/Ghost-CLI/graphs/contributors",
"license": "MIT",
"main": "lib/index.js",
"bin": {
"ghost": "./bin/ghost"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint bin/* lib test extensions",
"test": "nyc --reporter=html --reporter=text mocha -t 5000 --recursive test/unit extensions/**/test",
"posttest": "yarn lint",
"ship": "f() { STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then standard-version $@ && git push --follow-tags; fi; }; f"
},
"nyc": {
"exclude": [
"**/*-spec.js",
"test"
]
},
"engines": {
"node": "^12.22.1 || ^14.17.0 || ^16.13.0 || ^18.0.0"
},
"preferGlobal": true,
"dependencies": {
"@tryghost/zip": "^1.1.25",
"abbrev": "2.0.0",
"bluebird": "3.7.2",
"boxen": "5.1.2",
"chalk": "4.1.2",
"cli-table3": "0.5.0",
"debug": "4.3.4",
"decompress": "4.2.1",
"download": "8.0.0",
"execa": "1.0.0",
"find-plugins": "1.1.7",
"fkill": "7.2.1",
"form-data": "3.0.1",
"fs-extra": "11.1.1",
"generate-password": "1.7.0",
"global-modules": "2.0.0",
"got": "9.6.0",
"https-proxy-agent": "5.0.1",
"ini": "2.0.0",
"inquirer": "7.3.3",
"is-running": "2.1.0",
"latest-version": "5.1.0",
"listr": "0.14.3",
"lodash": "4.17.21",
"log-symbols": "4.1.0",
"moment": "2.27.0",
"mysql2": "2.3.3",
"ora": "3.4.0",
"package-json": "7.0.0",
"path-is-root": "0.1.0",
"portfinder": "1.0.32",
"prettyjson": "1.2.5",
"proxy-from-env": "1.1.0",
"read-last-lines": "1.8.0",
"replace-in-file": "6.3.5",
"rxjs": "7.8.1",
"semver": "7.5.4",
"shasum": "1.0.2",
"stat-mode": "1.0.0",
"strip-ansi": "6.0.1",
"symlink-or-copy": "1.3.1",
"systeminformation": "5.21.11",
"tail": "2.2.6",
"tough-cookie": "4.1.3",
"validator": "7.2.0",
"yargs": "17.7.2",
"yarn": "1.22.19"
},
"devDependencies": {
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
"eslint": "7.30.0",
"eslint-plugin-ghost": "2.5.0",
"has-ansi": "4.0.1",
"mocha": "10.1.0",
"nock": "13.2.9",
"nyc": "15.1.0",
"proxyquire": "2.1.3",
"sinon": "15.0.0",
"standard-version": "4.3.0",
"tmp": "0.2.1"
}
}