forked from Level/level
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.82 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.82 KB
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
{
"name" : "level"
, "description" : "Fast & simple storage - a Node.js-style LevelDB wrapper (a convenience package bundling LevelUP & LevelDOWN)"
, "version" : "0.18.0"
, "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/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/Level/level.git"
}
, "homepage" : "https://github.com/Level/level"
, "keywords": [
"leveldb"
, "stream"
, "database"
, "db"
, "store"
, "storage"
, "json"
]
, "main" : "level.js"
, "dependencies" : {
"leveldown" : "~0.10.0"
, "level-packager" : "~0.18.0"
}
, "devDependencies" : {
"tape" : "*"
}
, "scripts" : {
"test" : "node ./test.js"
}
, "license" : "MIT"
}