This repository has been archived by the owner on Nov 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
78 lines (78 loc) · 1.79 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
{
"name": "cozy-blog",
"version": "1.0.0",
"engines": [
"node >= 0.10.0"
],
"description": "Ghost blogging platform ported on cozy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cylwin/cozy-ghost.git"
},
"main": "server.js",
"dependencies": {
"americano": "0.3.11",
"cozydb": "0.1.8",
"lodash": "^3.5.0",
"async": "^0.9.0",
"bcryptjs": "2.0.2",
"bluebird": "2.4.2",
"body-parser": "1.10.0",
"bookshelf": "0.7.9",
"busboy": "0.2.9",
"cheerio": "0.18.0",
"colors": "0.6.2",
"compression": "1.2.2",
"connect-slashes": "1.3.0",
"downsize": "0.0.8",
"express": "4.12.0",
"express-hbs": "0.7.11",
"extract-zip": "1.0.3",
"fs-extra": "0.13.0",
"glob": "4.3.2",
"html-to-text": "1.2.0",
"knex": "0.7.3",
"lodash": "2.4.1",
"moment": "2.8.3",
"morgan": "1.5.0",
"mysql": "2.1.1",
"node-uuid": "1.4.2",
"nodemailer": "0.7.1",
"oauth2orize": "1.0.1",
"passport": "0.2.1",
"passport-http-bearer": "1.0.1",
"passport-oauth2-client-password": "0.1.2",
"path-match": "1.2.2",
"pg": "4.1.1",
"request": "2.51.0",
"rss": "1.0.0",
"semver": "4.1.0",
"showdown-ghost": "0.3.4",
"sqlite3": "3.1.1",
"unidecode": "0.1.3",
"validator": "3.28.0",
"xml": "0.0.12",
"printit": "0.1.6"
},
"devDependencies": {
"should": "2.0.1",
"mocha": "1.13.0",
"request-json": "0.4.4",
"cozy-fixtures": "1.0.1",
"jslint": "0.2.0"
},
"scripts": {
"test": "make tests",
"start": "node server.js"
},
"cozy-permissions": {
"Blog": {
"description": "Creates and edits your blog"
},
"CozyInstance": {
"description": "Read the cozy url"
}
},
"cozy-displayName": "Blog"
}