-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
56 lines (56 loc) · 1.57 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
{
"name": "gctools",
"version": "0.1.0",
"description": "Command line utilities for working with Ghost content",
"repository": "https://github.com/TryGhost/gctools",
"author": "Ghost Foundation",
"main": "index.js",
"type": "module",
"license": "MIT",
"bin": {
"gctools": "./bin/cli.js"
},
"eslintIgnore": [
"**/node_modules/**"
],
"scripts": {
"dev": "node bin/cli.js",
"gctools": "gctools",
"test:only": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js && yarn lint",
"lint": "eslint . --ext .js --cache",
"update": "git pull origin main && yarn"
},
"devDependencies": {
"eslint": "8.57.0",
"eslint-plugin-ghost": "3.4.0",
"jest": "29.7.0",
"jest-extended": "4.0.2"
},
"dependencies": {
"@inquirer/confirm": "3.2.0",
"@tryghost/admin-api": "1.13.12",
"@tryghost/listr-smart-renderer": "0.5.15",
"@tryghost/logging": "2.4.19",
"@tryghost/mg-assetscraper": "0.4.16",
"@tryghost/mg-fs-utils": "0.15.0",
"@tryghost/pretty-cli": "1.2.45",
"@tryghost/zip": "1.1.47",
"axios": "1.7.7",
"bluebird": "3.7.2",
"chalk": "5.3.0",
"cli-progress": "3.12.0",
"fs-extra": "11.2.0",
"glob": "10.4.5",
"inquirer": "9.3.7",
"inquirer-datepicker-prompt": "0.4.3",
"inquirer-search-checkbox": "1.0.0",
"jsonwebtoken": "9.0.2",
"listr": "0.14.3",
"lodash": "4.17.21",
"lorem-ipsum": "2.0.8",
"superbytes": "2.0.1",
"title-case": "4.3.2",
"tty-table": "4.2.3"
}
}