forked from snowyu/nosql-memdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 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
57
58
59
60
{
"name": "nosql-memdb",
"description": "Nosql database that works in memory only inherits from abstract-nosql",
"version": "2.0.0",
"homepage": "https://github.com/snowyu/node-nosql-memdb",
"contributors": [
"Riceball LEE <[email protected]> (https://github.com/snowyu)",
"Rod Vagg <[email protected]> (https://github.com/rvagg)",
"Julian Gruber <[email protected]> (https://github.com/juliangruber)"
],
"keywords": [
"abstract-nosql",
"nosql",
"database",
"data",
"store",
"memory"
],
"main": "./memdown.js",
"repository": {
"type": "git",
"url": "https://github.com/snowyu/node-nosql-memdb.git"
},
"dependencies": {
"abstract-iterator": ">=0.11.2",
"abstract-nosql": ">=2.0.0",
"abstract-object": ">=1.6.1",
"functional-red-black-tree": "~1.0.1",
"ltgt": "~1.0.2"
},
"devDependencies": {
"bench": "*",
"faucet": "*",
"rimraf": "*",
"tape": "*"
},
"browser": {
"rimraf": false
},
"scripts": {
"test": "node ./test.js --stderr | faucet"
},
"testling": {
"files": "test.js",
"browsers": [
"ie/8..latest",
"firefox/17..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
},
"license": "MIT"
}