forked from Level/levelup
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 2.13 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
61
62
63
64
65
66
67
68
{
"name": "levelup",
"description": "Fast & simple storage - a Node.js-style LevelDB wrapper",
"version": "1.3.2",
"contributors": [
"Rod Vagg <[email protected]> (https://github.com/rvagg)",
"John Chesley <[email protected]> (https://github.com/chesles/)",
"Jake Verbaten <[email protected]> (https://github.com/raynos)",
"Dominic Tarr <[email protected]> (https://github.com/dominictarr)",
"Max Ogden <[email protected]> (https://github.com/maxogden)",
"Lars-Magnus Skog <[email protected]> (https://github.com/ralphtheninja)",
"David Björklund <[email protected]> (https://github.com/kesla)",
"Julian Gruber <[email protected]> (https://github.com/juliangruber)",
"Paolo Fragomeni <[email protected]> (https://github.com/0x00a)",
"Anton Whalley <[email protected]> (https://github.com/No9)",
"Matteo Collina <[email protected]> (https://github.com/mcollina)",
"Pedro Teixeira <[email protected]> (https://github.com/pgte)",
"James Halliday <[email protected]> (https://github.com/substack)",
"Jarrett Cruger <[email protected]> (https://github.com/jcrugzz)"
],
"repository": {
"type": "git",
"url": "https://github.com/level/levelup.git"
},
"homepage": "https://github.com/level/levelup",
"keywords": [
"leveldb",
"stream",
"database",
"db",
"store",
"storage",
"json"
],
"main": "lib/levelup.js",
"dependencies": {
"deferred-leveldown": "~1.2.1",
"level-codec": "~6.1.0",
"level-errors": "~1.0.3",
"level-iterator-stream": "~1.3.0",
"prr": "~1.0.1",
"semver": "~5.1.0",
"xtend": "~4.0.0"
},
"devDependencies": {
"async": "~1.5.0",
"bustermove": "~1.0.0",
"tap": "~2.3.1",
"delayed": "~1.0.1",
"faucet": "~0.0.1",
"leveldown": "^1.1.0",
"memdown": "~1.1.0",
"msgpack-js": "~0.3.0",
"referee": "~1.2.0",
"rimraf": "~2.4.3",
"slow-stream": "0.0.4",
"tape": "~4.2.1"
},
"browser": {
"leveldown": false,
"leveldown/package": false,
"semver": false
},
"scripts": {
"test": "tape test/*-test.js | faucet"
},
"license": "MIT"
}