-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.45 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
{
"name": "skribki",
"version": "1.5.0",
"description": "An open-source wiki software based on git.",
"main": "release.js",
"private": true,
"scripts": {
"test": "rm -rf wiki.test && node test.js",
"start": "node release.js",
"debug": "node debug.js",
"unlock": "rm -f wiki/repo.lck",
"fixcrash": "sudo kill -9 `lsof -t -i:8000`"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VevoxDigital/Skribki.git"
},
"keywords": [
"wiki",
"git"
],
"author": "Vevox Digital",
"contributors": [
"Matthew Struble <matt@vevox.io>"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/VevoxDigital/Skribki/issues"
},
"homepage": "http://wiki.vevox.io/projects/skribki",
"standard": {
"globals": [
"F",
"U",
"EMPTYOBJECT",
"EMPTYARRAY",
"assert"
]
},
"engines": {
"node": ">=6.0"
},
"dependencies": {
"cheerio": "^0.22.0",
"colors": "^1.1.2",
"fs-extra": "^2.0.0",
"highlight.js": "^9.9.0",
"klaw": "^1.3.1",
"lockfile": "^1.0.3",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"node-sass": "^4.0.0",
"passport": "^0.3.2",
"passport-github2": "^0.1.10",
"pug": "^2.0.0-beta6",
"q": "^1.4.1",
"simple-git": "^1.65.0",
"total.js": "^2.3.0",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.3"
},
"devDependencies": {
"expect.js": "^0.3.1",
"mock-fs": "^4.2.0"
}
}