forked from TryGhost/gscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.13 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
{
"name": "gscan",
"version": "4.35.1",
"description": "Scans Ghost themes looking for errors, deprecations, features and compatibility",
"keywords": [
"ghost",
"themes",
"validator",
"lint"
],
"homepage": "https://ghost.org/",
"repository": {
"type": "git",
"url": "git@github.com:TryGhost/gscan.git"
},
"engines": {
"node": "^14.18.0 || ^16.13.0 || ^18.12.1"
},
"bugs": {
"url": "https://github.com/TryGhost/gscan/issues"
},
"author": {
"name": "Ghost Foundation",
"email": "hello@ghost.org",
"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": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn publish && git push ${GHOST_UPSTREAM:-origin} main --follow-tags; fi"
},
"bin": {
"gscan": "./bin/cli.js"
},
"dependencies": {
"@sentry/node": "7.29.0",
"@tryghost/config": "0.2.13",
"@tryghost/debug": "0.1.21",
"@tryghost/errors": "1.2.20",
"@tryghost/logging": "2.3.6",
"@tryghost/pretty-cli": "1.2.33",
"@tryghost/server": "0.1.29",
"@tryghost/zip": "1.1.31",
"bluebird": "3.7.2",
"chalk": "4.1.2",
"common-tags": "1.8.2",
"express": "4.18.2",
"express-hbs": "2.4.0",
"fs-extra": "11.1.0",
"glob": "8.0.3",
"lodash": "4.17.21",
"multer": "1.4.4",
"pluralize": "8.0.0",
"require-dir": "1.2.0",
"semver": "7.3.8",
"uuid": "9.0.0",
"validator": "13.0.0"
},
"devDependencies": {
"eslint": "8.1.0",
"eslint-plugin-ghost": "2.1.0",
"istanbul": "0.4.5",
"mocha": "10.0.0",
"node-fetch": "3.3.0",
"nodemon": "2.0.7",
"rewire": "6.0.0",
"should": "13.2.3",
"sinon": "15.0.0"
},
"files": [
"lib",
"bin",
"app"
]
}