forked from koa-modules/koa-no-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 866 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
{
"name": "koa-no-cache",
"version": "1.1.0",
"description": "no cache for some paths or types",
"main": "index.js",
"scripts": {
"test": "mocha --harmony -R spec -t 500 test/*.js",
"test-cov": "node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -R dot -t 500 test/*.js",
"test-travis": "node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -R dot -t 500 test/*.js"
},
"repository": "coderhaoxin/koa-no-cache",
"keywords": [
"no-cache",
"cache",
"paths",
"types"
],
"author": "haoxin",
"license": "MIT",
"devDependencies": {
"istanbul-harmony": "0",
"koa": "*",
"koa-static-cache": "3",
"mocha": "2",
"supertest": "1"
},
"dependencies": {
"path-to-regexp": "1",
"type-is": "1"
},
"files": [
"index.js"
]
}