forked from Level/levelup
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "levelup-sync",
"description": "Fast & simple storage - a Node.js-style LevelDB wrapper with sync supports",
"version": "0.20.0",
"contributors": [
"Riceball LEE <[email protected]> (https://github.com/snowyu)",
"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/hij1nx)",
"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)"
],
"repository": {
"type": "git",
"url": "https://github.com/snowyu/node-levelup-sync.git"
},
"homepage": "https://github.com/snowyu/node-levelup-sync",
"keywords": [
"nosql",
"leveldb",
"stream",
"database",
"db",
"store",
"storage",
"json"
],
"main": "lib/levelup.js",
"dependencies": {
"bl": "~0.8.1",
"deferred-leveldown": "~0.2.0",
"errno": "~0.1.1",
"prr": "~0.0.0",
"readable-stream": "~1.0.26",
"semver": "~2.3.1",
"xtend": "~3.0.0"
},
"devDependencies": {
"leveldown-sync": "~1.1.0",
"bustermove": "*",
"tap": "*",
"referee": "*",
"rimraf": "*",
"async": "*",
"fstream": "*",
"tar": "*",
"mkfiletree": "*",
"readfiletree": "*",
"slow-stream": ">=0.0.4",
"delayed": "*",
"boganipsum": "*",
"du": "*",
"memdown-sync": "*",
"msgpack-js": "*"
},
"browser": {
"leveldown": false,
"leveldown/package": false,
"semver": false
},
"scripts": {
"test": "tap test/*-test.js --stderr",
"functionaltests": "node ./test/functional/fstream-test.js && node ./test/functional/binary-data-test.js && node ./test/functional/compat-test.js",
"alltests": "npm test && npm run-script functionaltests"
},
"license": "MIT"
}