forked from alltherooms/cached-request
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 696 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 696 Bytes
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
{
"name": "cached-request",
"version": "0.1.4",
"description": "Node.js module to perform HTTP requests with caching support",
"author": "Daniel López <danypype@gmail.com>",
"scripts": {
"test": "mocha"
},
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/alltherooms/cached-request"
},
"bugs": {
"url": "https://github.com/alltherooms/cached-request/issues"
},
"keywords": [
"request",
"cache",
"caching"
],
"dependencies": {
"graceful-fs": "^3.0.5"
},
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.1.0",
"nock": "^0.52.4",
"request": "^2.51.0",
"temp": "^0.8.1"
}
}