-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
36 lines (36 loc) · 846 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
{
"name": "lru-cache-cluster",
"description": "Cluster aware LRU cache. Master process maintains cache and uses worker messaging to deliver items machine-local.",
"version": "1.0.0",
"main": "lib/lru-cache-cluster.js",
"devDependencies": {
"tap": "~0.4.8"
},
"scripts": {
"test": "tap test"
},
"repository": {
"type": "git",
"url": "git://github.com/robby/node-lru-cache-cluster.git"
},
"keywords": [
"lru-cache",
"lru",
"cache",
"cluster",
"cache"
],
"author": {
"name": "Robby Valles",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/robby/node-lru-cache-cluster/issues"
},
"homepage": "https://github.com/robby/node-lru-cache-cluster",
"dependencies": {
"lru-cache": "~2.5.0",
"node-uuid": "~1.4.1"
}
}