-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
96 lines (96 loc) · 2.32 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
{
"name": "gscan",
"version": "4.46.0",
"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": "^14.18.0 || ^16.13.0 || ^18.12.1 || ^20.11.1"
},
"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 mocha -- $(find test -name '*.test.js')",
"posttest": "yarn lint",
"coverage": "NODE_ENV=testing istanbul cover --dir test/coverage _mocha -- $(find test -name '*.test.js')",
"preship": "yarn test",
"ship": "pro-ship",
"postship": "npm publish"
},
"bin": {
"gscan": "./bin/cli.js"
},
"dependencies": {
"@sentry/node": "^7.73.0",
"@tryghost/config": "^0.2.18",
"@tryghost/debug": "^0.1.26",
"@tryghost/errors": "^1.2.26",
"@tryghost/logging": "^2.4.7",
"@tryghost/nql": "^0.12.5",
"@tryghost/pretty-cli": "^1.2.38",
"@tryghost/server": "^0.1.37",
"@tryghost/zip": "^1.1.42",
"chalk": "^4.1.2",
"common-tags": "^1.8.2",
"express": "^4.18.2",
"express-hbs": "^2.4.2",
"fs-extra": "^11.1.1",
"glob": "^8.1.0",
"lodash": "^4.17.21",
"multer": "^1.4.4",
"pluralize": "^8.0.0",
"require-dir": "^1.2.0",
"semver": "^7.5.4",
"uuid": "^9.0.1",
"validator": "^13.0.0"
},
"devDependencies": {
"@tryghost/pro-ship": "1.0.6",
"eslint": "8.1.0",
"eslint-plugin-ghost": "2.1.0",
"istanbul": "0.4.5",
"mocha": "11.0.1",
"node-fetch": "3.3.2",
"nodemon": "2.0.7",
"rewire": "6.0.0",
"should": "13.2.3",
"sinon": "19.0.2"
},
"files": [
"lib",
"bin",
"app"
],
"renovate": {
"extends": [
"@tryghost:quietJS",
"@tryghost:automergeDevDependencies"
],
"ignoreDeps": [
"validator"
]
}
}