-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 963 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
{
"name": "level-cache",
"version": "0.1.0",
"description": "An in memory cache on top of leveldb",
"keywords": [],
"author": "Raynos <[email protected]>",
"repository": "git://github.com/Raynos/level-cache.git",
"main": "index",
"homepage": "https://github.com/Raynos/level-cache",
"contributors": [
{
"name": "Jake Verbaten"
}
],
"bugs": {
"url": "https://github.com/Raynos/level-cache/issues",
"email": "[email protected]"
},
"dependencies": {
"level-encoding": "~0.1.0",
"level-write-stream": "~0.1.0",
"xtend": "~1.0.3",
"lru-cache": "~2.1.0",
"read-stream": "~0.4.8"
},
"devDependencies": {
"tap": "~0.3.1",
"levelidb": "~0.2.3",
"node-uuid": "~1.4.0",
"write-stream": "~0.4.3"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/Raynos/level-cache/raw/master/LICENSE"
}
],
"scripts": {
"test": "tap --stderr --tap ./test"
}
}