-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.06 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.06 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
{
"name": "gscan",
"version": "5.3.4",
"description": "Scans Ghost themes looking for errors, deprecations, features and compatibility",
"keywords": [
"ghost",
"themes",
"validator",
"lint"
],
"homepage": "https://ghost.org/",
"repository": {
"type": "git",
"url": "[email protected]:TryGhost/gscan.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": "^20.19.0 || ^22.13.1 || ^24.0.0"
},
"bugs": {
"url": "https://github.com/TryGhost/gscan/issues"
},
"author": {
"name": "Ghost Foundation",
"email": "[email protected]",
"web": "https://ghost.org/"
},
"main": "lib",
"license": "MIT",
"scripts": {
"start": "node app/index.js",
"dev": "NODE_ENV=development DEBUG=gscan:* nodemon",
"lint": "eslint . --ext .js --cache",
"test": "NODE_ENV=testing vitest run --coverage",
"posttest": "yarn lint",
"preship": "yarn test",
"ship": "pro-ship",
"postship": "npm publish"
},
"bin": {
"gscan": "./bin/cli.js"
},
"dependencies": {
"@sentry/node": "10.43.0",
"@tryghost/config": "2.0.2",
"@tryghost/debug": "2.0.2",
"@tryghost/errors": "3.0.2",
"@tryghost/logging": "4.0.2",
"@tryghost/nql": "0.12.10",
"@tryghost/pretty-cli": "3.0.2",
"@tryghost/server": "2.0.2",
"@tryghost/zip": "3.0.2",
"chalk": "5.6.2",
"express": "5.2.1",
"express-handlebars": "7.1.3",
"fs-extra": "11.3.4",
"glob": "13.0.6",
"lodash": "4.17.23",
"multer": "2.1.1",
"semver": "7.7.4",
"validator": "^13.0.0"
},
"devDependencies": {
"@eslint/compat": "2.0.3",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@tryghost/pro-ship": "1.0.7",
"@vitest/coverage-v8": "4.0.18",
"eslint": "10.0.3",
"eslint-plugin-ghost": "3.5.0",
"nodemon": "3.1.14",
"should": "13.2.3",
"sinon": "21.0.2",
"vitest": "4.0.18"
},
"resolutions": {
"node-loggly-bulk": "4.0.2",
"node-loggly-bulk/axios": "1.13.6"
},
"files": [
"lib",
"bin",
"app"
]
}