This repository has been archived by the owner on Oct 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
97 lines (97 loc) · 2.21 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
93
94
95
96
97
{
"name": "xplorer",
"version": "3.0.3",
"description": "Explore and share. Highly-configurable directory listing made with nodejs",
"main": "index.js",
"bin": {
"explorer": "./bin/explorer"
},
"keywords": [
"explorer",
"xplorer",
"directory listing",
"tree",
"listing",
"files"
],
"scripts": {
"test": "mocha --harmony",
"coverage": "istanbul cover _mocha -- --harmony",
"postinstall": "bash scripts/postinstall.sh",
"docs": "apidoc -i routes -o doc/api",
"start": "node --harmony index.js"
},
"engines": {
"node": ">4.0"
},
"apps": [
{
"script": "index.js",
"node_args": "--harmony",
"env": {
"DEBUG": ""
}
}
],
"apidoc": {
"title": "Explorer api"
},
"repository": "http://github.com/soyuka/explorer",
"author": "soyuka",
"license": "MIT",
"dependencies": {
"archiver": "^0.14.4",
"async": "^1.4.2",
"bcrypt": "^0.8.5",
"bluebird": "^2.9.34",
"body-parser": "^1.13.3",
"connect-flash": "^0.1.1",
"content-disposition": "^0.5.0",
"cookie-parser": "^1.3.5",
"debug": "^2.2.0",
"express": "^4.13.3",
"express-session": "^1.11.3",
"faye": "^1.1.2",
"filenamify": "^1.2.0",
"got": "^4.2.0",
"hamljs": "^0.6.2",
"ioredis": "^1.9.1",
"ipcee": "^1.0.4",
"is-glob": "^2.0.0",
"memory-cache": "^0.1.4",
"method-override": "^2.3.5",
"micromatch": "^2.2.0",
"mime": "^1.3.4",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"moment": "^2.10.6",
"morgan": "^1.6.1",
"multer": "^1.0.3",
"mv": "^2.1.1",
"natural": "^0.2.1",
"ncp": "^2.0.0",
"pretty-bytes": "^2.0.1",
"promise-spawner": "^1.1.3",
"rimraf": "^2.4.2",
"rss": "^1.1.1",
"yamljs": "^0.2.3"
},
"devDependencies": {
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"gulp": "^3.9.0",
"gulp-add-src": "^0.2.0",
"gulp-concat": "^2.6.0",
"gulp-minify-css": "^1.2.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.0.4",
"gulp-uglify": "^1.4.1",
"methods": "^1.1.1",
"mocha": "^2.2.5",
"superagent": "^1.3.0",
"supertest": "^1.0.1"
},
"optionalDependencies": {
"hiredis": "^0.4.1"
}
}