forked from koajs/file-server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.18 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.18 KB
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
{
"name": "koa-file-server",
"description": "file serving middleware for koa",
"version": "2.3.1",
"author": {
"name": "Jonathan Ong",
"email": "me@jongleberry.com",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"repository": "koajs/file-server",
"dependencies": {
"compressible": "2",
"debug": "*",
"hash-stream": "^1.0.0",
"mime-types": "2",
"mz": "^2.0.0",
"resolve-path": "^1.0.0",
"spdy-push": "^1.0.0"
},
"devDependencies": {
"bluebird": "2",
"co": "3",
"istanbul-harmony": "0",
"koa": "*",
"mocha": "^2.2.5",
"should": "3",
"spdy": "*",
"spdy-keys": "*",
"supertest": "^1.0.1"
},
"scripts": {
"test": "NODE_ENV=test mocha --require should --reporter spec --bail",
"test-cov": "node node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --require should",
"test-travis": "node node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot --require should"
},
"license": "MIT",
"files": [
"index.js"
],
"keywords": [
"koa",
"file",
"server",
"static"
]
}