-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "reliable-get",
"version": "5.0.10",
"description": "A circuit breaker and cached wrapper for GET requests (enables reliable external service interaction).",
"main": "index.js",
"scripts": {
"lint": "jshint .",
"test": "nyc --check-coverage --lines 85 mocha -R spec tests/* --exit",
"soak": "node --expose-gc benchmark/soak.js"
},
"repository": {
"type": "git",
"url": "[email protected]:tes/reliable-get.git"
},
"keywords": [
"composition",
"proxy"
],
"author": "TES Global",
"license": "MIT",
"bugs": {
"url": "https://github.com/tes/reliable-get/issues"
},
"homepage": "https://github.com/tes/reliable-get",
"dependencies": {
"async-deco": "^8.0.0",
"body-parser": "^1.6.7",
"cache-manager": "^2.9.1",
"cache-manager-memcached-store": "^2.1.0",
"cache-manager-redis": "^0.2.2",
"connect-route": "^0.1.4",
"hogan.js": "^3.0.2",
"lodash": "^4.17.5",
"memoize-cache": "^5.0.1",
"memoize-cache-manager": "^1.0.1",
"memoize-cache-redis": "^1.0.3",
"memoize-cache-utils": "^0.1.1",
"request": "^2.48.0",
"sf": "^0.1.7"
},
"devDependencies": {
"async": "^0.9.0",
"connect": "^3.3.3",
"cookie-parser": "^1.3.3",
"expect.js": "~0.3.1",
"heapdump": "^0.3.12",
"jshint": "^2.10.1",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"precommit-hook": "^1.0.7"
},
"pre-commit": [
"lint",
"test"
]
}