forked from Level/leveldown
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.56 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
76
77
78
79
80
81
{
"name": "nosql-leveldb",
"description": "A Node.js LevelDB binding with sync supports inherits from abstract-nosql.",
"version": "3.0.1",
"contributors": [
"Riceball LEE <snowyu.lee@gmail.com> (https://github.com/snowyu)",
"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)",
"Pedro Teixeira <pedro.teixeira@gmail.com> (https://github.com/pgte)",
"James Halliday <mail@substack.net> (https://github.com/substack)"
],
"repository": {
"type": "git",
"url": "https://github.com/snowyu/node-nosql-leveldb.git"
},
"homepage": "https://github.com/snowyu/node-nosql-leveldb",
"keywords": [
"abstract-nosql",
"nosql",
"database",
"data",
"storage",
"leveldb",
"level"
],
"main": "leveldb.js",
"dependencies": {
"abstract-error": "^1.0.1",
"abstract-iterator": "^3.0.1",
"abstract-nosql": "^3.0.0",
"bindings": "~1.3.0",
"fast-future": "~1.0.0",
"inherits-ex": "^1.0.6",
"nan": "^2.10.0",
"prebuild-install": "^4.0.0",
"util-ex": "^0.2.9"
},
"devDependencies": {
"async": "^2.6.0",
"coffee-script": "^1.12.7",
"delayed": "^1.0.1",
"du": "^0.1.0",
"events-ex": "^1.1.2",
"faucet": "0.0.1",
"iota-array": "^1.0.0",
"lexicographic-integer": "^1.1.0",
"mkfiletree": "~0.0.1",
"monotonic-timestamp": "~0.0.8",
"pre-commit": "^1.0.7",
"prebuild": "^6.0.2",
"prebuild-ci": "^2.0.0",
"readfiletree": "~0.0.1",
"rimraf": "^2.6.1",
"tap": "^12.0.1"
},
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"rebuild": "prebuild --compile",
"prebuild": "prebuild --all --strip --verbose",
"build": "coffee -c *.coffee",
"test": "tap test/*-test.js"
},
"pre-commit": [
"build",
"test"
],
"license": "MIT",
"gypfile": true,
"engines": {
"node": ">=4"
}
}