-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
69 lines (69 loc) · 1.43 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
{
"name": "koa-static-cache",
"description": "Static cache for koa",
"version": "5.1.4",
"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": {
"compressible": "^2.0.6",
"debug": "^3.1.0",
"fs-readdir-recursive": "^1.0.0",
"mime-types": "^2.1.8",
"mz": "^2.7.0"
},
"devDependencies": {
"bluebird": "3",
"istanbul": "~0.4.1",
"koa": "2",
"mocha": "2",
"should": "8",
"should-http": "0.0.4",
"supertest": "1",
"ylru": "1"
},
"scripts": {
"test": "make test"
},
"engines": {
"node": ">= 7.6.0"
}
}