forked from TryGhost/gscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.42 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
{
"name": "gscan",
"version": "0.1.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": "git@github.com:TryGhost/gscan.git"
},
"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",
"test": "mocha"
},
"bin": {
"gscan": "./bin/cli.js"
},
"dependencies": {
"bluebird": "3.4.6",
"chalk": "1.1.1",
"commander": "2.9.0",
"express": "4.14.0",
"express-hbs": "1.0.3",
"extract-zip-fork": "1.5.1",
"fs-extra": "0.26.2",
"ghost-ignition": "1.0.0",
"glob": "7.0.5",
"lodash": "3.10.1",
"multer": "1.1.0",
"node-uuid": "1.4.7",
"package-json-validator": "0.6.0",
"require-dir": "0.1.0"
},
"devDependencies": {
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-mocha-istanbul": "3.0.1",
"grunt-release": "0.13.0",
"grunt-shipit": "1.0.0",
"istanbul": "0.4.1",
"mocha": "2.4.5",
"rewire": "2.5.2",
"shipit-deploy": "2.1.3",
"should": "7.1.0",
"sinon": "1.17.5"
},
"files": [
"lib",
"bin",
"app"
]
}