forked from creationix/node-leveldb
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "leveldb",
"keywords": [
"database",
"leveldb"
],
"description": "Bindings for using LevelDB through node.",
"homepage": "https://github.com/my8bird/node-leveldb",
"version": "0.7.1",
"main": "lib",
"engines": {
"node": ">=0.6.13 <0.9.0"
},
"scripts": {
"prepublish": "make coffee",
"preinstall": "make build",
"postinstall": "make pkgclean",
"test": "make test"
},
"repository": {
"type": "git",
"url": "https://github.com/my8bird/node-leveldb.git"
},
"bugs": {
"url": "https://github.com/my8bird/node-leveldb/issues"
},
"dependencies": {
"node-gyp": "~0.9.5"
},
"devDependencies": {
"coffee-script": "~1.3.0",
"mocha": "~1.3.0"
},
"contributors": [
"Carter Thaxton <[email protected]>",
"Damon Oehlman <[email protected]>",
"Gabor Cselle <[email protected]>",
"Hans Wennborg <[email protected]>",
"Michael Phan-Ba <[email protected]>",
"Nathan Landis <[email protected]>",
"Randall Leeds <[email protected]>",
"Sanjay Ghemawat <[email protected]>",
"shinuza <[email protected]>",
"Stefan Thomas <[email protected]>",
"Tim Caswell <[email protected]>",
]
}