forked from Level/levelup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.38 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
{
"name" : "levelup"
, "description" : "Fast & simple storage - a Node.js-style LevelDB wrapper"
, "contributors" : [
"Rod Vagg <r@va.gg> (https://github.com/rvagg)"
, "John Chesley <john@chesl.es> (https://github.com/chesles/)"
, "Jake Verbaten <raynos2@gmail.com> (https://github.com/raynos)"
, "Dominic Tarr <dominic.tarr@gmail.com> (https://github.com/dominictarr)"
, "Max Ogden <max@maxogden.com> (https://github.com/maxogden)"
, "Lars-Magnus Skog <lars.magnus.skog@gmail.com> (https://github.com/ralphtheninja)"
, "David Björklund <david.bjorklund@gmail.com> (https://github.com/kesla)"
, "Julian Gruber <julian@juliangruber.com> (https://github.com/juliangruber)"
, "Paolo Fragomeni <paolo@async.ly> (https://github.com/hij1nx)"
, "Anton Whalley <anton.whalley@nearform.com> (https://github.com/No9)"
, "Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)"
]
, "keywords": [
"leveldb"
, "stream"
, "database"
, "db"
, "store"
, "storage"
, "json"
]
, "version" : "0.8.0"
, "main" : "lib/levelup.js"
, "dependencies" : {
"leveldown" : "~0.2.1"
, "errno" : "~0.0.3"
, "concat-stream" : "~0.1.1"
, "simple-bufferstream" : "~0.0.2"
, "xtend" : "~2.0.3"
, "prr" : "~0.0.0"
}
, "devDependencies" : {
"bustermove" : "*"
, "tap" : "*"
, "referee" : "*"
, "rimraf" : "*"
, "async" : "*"
, "fstream" : "*"
, "tar" : "*"
, "mkfiletree" : "*"
, "readfiletree" : "*"
, "slow-stream" : ">=0.0.4"
, "delayed" : "*"
, "boganipsum" : "*"
, "du" : "*"
, "memdown" : "*"
}
, "repository" : {
"type" : "git"
, "url" : "https://github.com/rvagg/node-levelup.git"
}
, "scripts" : {
"test" : "tap test/*-test.js"
, "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"
}