forked from TryGhost/Ghost-CLI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.56 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
{
"name": "ghost-cli",
"version": "1.8.1",
"description": "Just a CLI manager (for a blogging platform)",
"author": "Ghost Foundation",
"homepage": "http://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",
"release": "standard-version",
"test:unit": "nyc --reporter=html --reporter=text mocha --recursive test/unit extensions/**/test",
"test:acceptance": "mocha --timeout 10000 test/acceptance/**/*-spec.js",
"test:all": "yarn run test:unit && yarn run test:acceptance",
"test": "yarn run lint && yarn run test:all"
},
"nyc": {
"exclude": [
"**/*-spec.js",
"test"
]
},
"engines": {
"node": "^6.9.0 || ^8.9.0"
},
"preferGlobal": true,
"dependencies": {
"abbrev": "1.1.1",
"adm-zip": "0.4.11",
"bluebird": "3.5.1",
"chalk": "2.4.1",
"cli-table3": "0.5.0",
"debug": "3.1.0",
"decompress": "4.2.0",
"download": "7.1.0",
"execa": "0.10.0",
"find-plugins": "1.1.7",
"fkill": "5.3.0",
"fs-extra": "7.0.0",
"generate-password": "1.4.0",
"global-modules": "1.0.0",
"got": "8.3.2",
"inquirer": "6.0.0",
"is-running": "2.1.0",
"latest-version": "4.0.0",
"listr": "0.14.1",
"lodash": "4.17.10",
"log-symbols": "2.2.0",
"moment": "2.22.2",
"mysql": "2.16.0",
"ora": "3.0.0",
"path-is-root": "0.1.0",
"portfinder": "1.0.13",
"prettyjson": "1.2.1",
"read-last-lines": "1.6.0",
"replace-in-file": "3.4.0",
"rxjs": "5.5.11",
"semver": "5.5.0",
"shasum": "1.0.2",
"stat-mode": "0.2.2",
"strip-ansi": "4.0.0",
"symlink-or-copy": "1.2.0",
"systeminformation": "3.42.4",
"tail": "1.2.4",
"validator": "7.2.0",
"yargs": "11.0.0",
"yarn": "1.7.0"
},
"devDependencies": {
"chai": "4.1.2",
"coveralls": "3.0.2",
"eslint": "4.19.1",
"has-ansi": "3.0.0",
"mocha": "5.2.0",
"nyc": "12.0.2",
"proxyquire": "2.0.1",
"sinon": "6.1.4",
"standard-version": "4.4.0",
"tmp": "0.0.33"
},
"standard-version": {
"skip": {
"tag": true
}
}
}