forked from ryanlelek/Raneto
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.46 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
83
84
85
86
87
88
89
90
91
92
{
"name": "raneto",
"version": "0.16.0",
"description": "Markdown powered Knowledgebase",
"author": "Gilbert Pellegrom <[email protected]>",
"license": "MIT",
"keywords": [
"raneto",
"knowledgebase",
"markdown",
"static",
"site",
"generator"
],
"repository": {
"type": "git",
"url": "https://github.com/gilbitron/Raneto.git"
},
"bugs": "https://github.com/gilbitron/Raneto/issues",
"contributors": [
"https://github.com/gilbitron/Raneto/graphs/contributors"
],
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/gilbitron/Raneto/master/LICENSE"
}
],
"bin": "./bin/raneto",
"main": "./app/index.js",
"scripts": {
"start": "DEBUG=raneto node example/server.js",
"start_win": "set DEBUG=raneto&&node example/server.js",
"test": "npm run lint && mocha --reporter spec test/*.js",
"postinstall": "npm run gulp",
"gulp": "gulp",
"lint": "./node_modules/.bin/eslint bin/*.js app/**/*.js example/**/*.js test/*.js translate/*.json gulpfile.js"
},
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"always-tail": "^0.2.0",
"body-parser": "^1.18.2",
"bootstrap": "^3.3.7",
"bootstrap-rtl": "^3.3.4",
"commander": "^2.15.1",
"cookie-parser": "^1.4.3",
"debug": "^3.1.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"extend": "^3.0.1",
"fitvids": "^2.0.0",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"gulp-shell": "^0.6.5",
"highlightjs": "^9.10.0",
"hogan-express": "^0.5.2",
"jquery": "^2.2.4",
"jquery-backstretch": "^2.1.16",
"js-yaml": "^3.11.0",
"lunr": "^2.1.5",
"lunr-languages": "^1.0.0",
"markdown-it": "^8.4.0",
"markdown-toc": "^1.2.0",
"marked": "^0.3.19",
"masonry-layout": "^4.2.1",
"moment": "^2.22.1",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"pm2": "^2.10.2",
"sanitize-filename": "^1.6.1",
"serve-favicon": "^2.5.0",
"sitemap": "^1.13.0",
"sweetalert2": "^7.19.1",
"underscore": "^1.9.0",
"underscore.string": "^3.3.4",
"validator": "^9.4.1"
},
"devDependencies": {
"chai": "^4.1.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^5.1.1",
"supertest": "^3.0.0"
}
}