forked from TryGhost/Ghost-CLI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 2.92 KB
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
109
110
{
"name": "ghost-cli",
"version": "1.29.3",
"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": "git+https://github.com/TryGhost/Ghost-CLI.git"
},
"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": "pnpm lint",
"ship": "f() { STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then standard-version --skip.tag $@ && git push; fi; }; f"
},
"nyc": {
"exclude": [
"**/*-spec.js",
"test"
]
},
"engines": {
"node": "^20.11.1 || ^22.11.0 || ^24.0.0"
},
"preferGlobal": true,
"dependencies": {
"@tryghost/zip": "3.3.1",
"abbrev": "5.0.0",
"bluebird": "3.7.2",
"boxen": "8.0.1",
"chalk": "4.1.2",
"cli-table3": "0.5.0",
"debug": "4.4.3",
"decompress": "4.2.1",
"download": "8.0.0",
"execa": "1.0.0",
"find-plugins": "1.1.7",
"fkill": "10.0.3",
"form-data": "4.0.5",
"fs-extra": "11.3.5",
"generate-password": "1.7.1",
"global-modules": "2.0.0",
"got": "9.6.0",
"https-proxy-agent": "9.0.0",
"ini": "7.0.0",
"inquirer": "13.4.3",
"is-running": "2.1.0",
"jsonwebtoken": "9.0.3",
"latest-version": "5.1.0",
"listr": "0.14.3",
"lodash": "4.18.1",
"log-symbols": "7.0.1",
"moment": "2.30.1",
"mysql2": "3.22.3",
"ora": "3.4.0",
"package-json": "7.0.0",
"path-is-root": "0.1.0",
"portfinder": "1.0.38",
"prettyjson": "1.2.5",
"proxy-from-env": "2.1.0",
"read-last-lines": "1.8.0",
"replace-in-file": "8.4.0",
"rxjs": "7.8.2",
"semver": "7.8.0",
"shasum": "1.0.2",
"stat-mode": "1.0.0",
"symlink-or-copy": "1.3.1",
"systeminformation": "5.31.6",
"tail": "2.2.6",
"tough-cookie": "6.0.1",
"validator": "7.2.0",
"which": "7.0.0",
"yargs": "17.7.2",
"yarn": "1.22.22"
},
"devDependencies": {
"chai": "6.2.2",
"chai-as-promised": "8.0.2",
"eslint": "7.32.0",
"eslint-plugin-ghost": "2.5.0",
"has-ansi": "4.0.1",
"mocha": "11.7.5",
"nock": "14.0.15",
"nyc": "18.0.0",
"proxyquire": "2.1.3",
"sinon": "22.0.0",
"standard-version": "4.3.0",
"tmp": "0.2.5"
},
"packageManager": "pnpm@11.1.1+sha512.d1fdf5f73c617b64fa1a56a81c3c8dfe0e966e33a6010aa256b517ae77be21d93e05affc0de1a83b0e4f29d569f68b446ae8f068cd7247c0bb3df0fb4d7bdf9a"
}