forked from claudioc/jingo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.72 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": "jingo",
"version": "1.8.3",
"description": "A nodejs based wiki engine",
"author": "Claudio Cicali <[email protected]>",
"keywords": [
"wiki",
"git",
"engine",
"gollum",
"cms",
"markdown"
],
"standard": {
"ignore": [
"/public/vendor/"
],
"globals": [
"expect",
"describe",
"Git",
"sinon",
"chai"
]
},
"main": "jingo",
"bin": {
"jingo": "./jingo"
},
"repository": {
"type": "git",
"url": "https://github.com/claudioc/jingo"
},
"directories": {
"lib": "./lib/"
},
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.10.0",
"commander": "^2.5.1",
"cookie-parser": "^1.3.3",
"cookie-session": "^1.1.0",
"cors": "^2.7.1",
"ecstatic": "0.4.x",
"express": "^4.10.6",
"express-flash": "0.0.2",
"express-session": "^1.9.3",
"express-validator": "^3.1.0",
"gravatar": "^1.1.0",
"js-yaml": "^3.1.0",
"lodash": "^2.4.2",
"markdown-toc": "^0.11.7",
"marked": "^0.3.5",
"method-override": "^2.3.0",
"morgan": "^1.5.0",
"node-syntaxhighlighter": "*",
"passport": "^0.2.0",
"passport-github": "^0.1.5",
"passport-google-oauth": "^0.1.5",
"passport-local": "^1.0.0",
"semver": "^5.3.0",
"serve-favicon": "^2.1.7",
"transliteration": "^0.2.1",
"pug": "^2.0.0-beta11"
},
"devDependencies": {
"chai": "*",
"mocha": "*",
"nodemon": "^1.10.2",
"sinon": "^1.10.3"
},
"scripts": {
"test": "node_modules/.bin/mocha test/spec",
"start": "./jingo -c config.yaml",
"start-dev": "nodemon ./jingo -c config.yaml"
},
"engines": {
"node": ">=0.8",
"npm": ">=1.1"
},
"license": "MIT"
}