forked from claudioc/jingo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1 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
{
"name": "jingo",
"version": "0.5.1",
"description": "A nodejs based wiki engine (sort of Gollum port)",
"author": "Claudio Cicali <[email protected]>",
"main": "jingo",
"bin": {
"jingo": "./jingo"
},
"repository" :
{ "type" : "git",
"url" : "https://github.com/claudioc/jingo"
},
"directories" : { "lib" : "./lib/" },
"dependencies": {
"express": "3.x",
"jade": "*",
"passport": "*",
"passport-google": "*",
"passport-local": "*",
"iconv": "*",
"marked": ">= 0.2.x",
"node-syntaxhighlighter": "*",
"gravatar": ">= 1.0.6",
"express-validator": ">= 0.3.0",
"commander": "*",
"connect-flash": "*",
"yaml-js": "*"
},
"devDependencies": {
"chai": "*",
"mocha": "*"
},
"scripts": {
"test": "mocha test/spec"
},
"engines": {
"node": "0.8.x",
"npm": "1.1.x"
},
"licenses":
[ { "type" : "MIT"
, "url" : "http://github.com/claudioc/jingo/raw/master/LICENSE"
}
]
}