-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 841 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "cache-or-req",
"version": "1.0.5",
"description": "A very simple cache for request-promise operations, primary goal is to return always a value after the first real fetch. The library tried to re-fetch after TTL is reached but returns immediately, the next request within the TTL time will return the updated result. This library should primarily be used for accessing configuration via APIs and ensure that services get always some kind of configuration.",
"main": "CacheOrReq.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Sebastian Lagemann <sebastian@aigent.com>",
"license": "ISC",
"repository": {
"type" : "git",
"url" : "https://github.com/Aigent/cache-or-req.git"
},
"dependencies": {
"request": "^2.88.0",
"request-promise": "^4.2.2"
}
}