-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
44 lines (44 loc) · 1006 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
41
42
43
44
{
"name": "route-cache",
"version": "0.7.0",
"description": "express middleware for caching your routes",
"main": "index.js",
"scripts": {
"format": "standard --fix",
"test": "standard && cross-env DEBUG=route-cache mocha -R spec test"
},
"repository": {
"type": "git",
"url": "http://github.com/bradoyler/route-cache.git"
},
"keywords": [
"middleware",
"express",
"cache",
"http-caching"
],
"author": "Brad Oyler <bradoyler@gmail.com> (github.com/bradoyler)",
"license": "MIT",
"dependencies": {
"debug": "3.1.0",
"lru-cache": "4.0.1"
},
"devDependencies": {
"cross-env": "^5.2.0",
"express": "^4.16.4",
"mocha": "^9.1.4",
"sinon": "^14.0.0",
"standard": "^16.0.4",
"supertest": "^4.0.2"
},
"standard": {
"ignore": [
"test/**",
"loadtests/**"
]
},
"bugs": {
"url": "https://github.com/bradoyler/route-cache/issues"
},
"homepage": "https://github.com/bradoyler/route-cache"
}