-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 904 Bytes
/
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
{
"name": "koa-rest-cache",
"version": "1.1.0",
"description": "Very simple cache middleware for restful apis in koa",
"main": "cache.js",
"scripts": {
"test": "mocha",
"watch": "mocha -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hodavidhara/koa-rest-cache.git"
},
"keywords": [
"koa",
"middleware",
"cache",
"rest"
],
"author": "David Hara <[email protected]> (http://hodavidhara.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hodavidhara/koa-rest-cache/issues"
},
"homepage": "https://github.com/hodavidhara/koa-rest-cache#readme",
"dependencies": {
"minimatch": "^3.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"koa": "^1.2.0",
"mocha": "^2.4.5",
"mocha-junit-reporter": "^1.9.1",
"sinon": "^4.5.0",
"sinon-chai": "^2.8.0",
"supertest": "^4.0.2"
}
}