forked from koajs/static-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.36 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
{
"name": "koa-static-cache",
"description": "Static cache for koa",
"version": "3.1.1",
"author": {
"name": "Jonathan Ong",
"email": "[email protected]",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"contributors": [
{
"name": "Jeremiah Senkpiel",
"email": "[email protected]",
"url": "https://searchbeam.jit.su",
"twitter": "https://twitter.com/fishrock123"
},
{
"name": "dead_horse",
"email": "[email protected]",
"url": "http://deadhorse.me",
"twitter": "https://twitter.com/deadhorse_busi"
}
],
"files": ["index.js"],
"keywords": [
"koa",
"middleware",
"file",
"static",
"cache",
"gzip",
"sendfile"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/koajs/static-cache.git"
},
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/koajs/static-cache/issues"
},
"dependencies": {
"mime-types": "~2.0.1",
"compressible": "~2.0.0",
"fs-readdir-recursive": ">=0.0.2",
"debug": "*"
},
"devDependencies": {
"istanbul-harmony": "~0.3.0",
"koa": "~0.13.0",
"mocha": "~2.0.1",
"should": "~3.3.2",
"supertest": "~0.13.0"
},
"scripts": {
"test": "make test"
},
"engines": {
"node": "> 0.11.4"
}
}