-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 933 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
39
40
{
"name": "koa-no-cache",
"version": "2.0.0",
"description": "no cache for some paths or types",
"main": "index.js",
"scripts": {
"test": "mocha -R spec -t 500 test/*.js",
"test-cov": "istanbul cover node_modules/.bin/_mocha -- -R dot -t 500 test/*.js",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- -R dot -t 500 test/*.js"
},
"repository": "koa-modules/koa-no-cache",
"keywords": [
"no-cache",
"cache",
"paths",
"types"
],
"author": "haoxin",
"license": "MIT",
"devDependencies": {
"eslint-config-ok": "github:haoxins/eslint-config",
"istanbul": "^0.4.5",
"koa": "^2.4.1",
"koa-static-cache": "^5.1.1",
"mocha": "^3.5.3",
"supertest": "^3.0.0"
},
"dependencies": {
"path-to-regexp": "^2.1.0",
"type-is": "^1.6.15"
},
"files": [
"index.js"
],
"eslintConfig": {
"extends": [
"ok"
]
}
}