forked from creationix/node-leveldb
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.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 <carter.thaxton@gmail.com>",
"Damon Oehlman <damon.oehlman@gmail.com>",
"Gabor Cselle <gabor@google.com>",
"Hans Wennborg <hans@chromium.org>",
"Michael Phan-Ba <michael@mikepb.com>",
"Nathan Landis <my8bird@gmail.com>",
"Randall Leeds <randall.leeds@gmail.com>",
"Sanjay Ghemawat <sanjay@google.com>",
"shinuza <samorigorse@gmail.com>",
"Stefan Thomas <justmoon@members.fsf.org>",
"Tim Caswell <tim@creationix.com>",
"dgrogan@chromium.org",
"jorlow@chromium.org"
]
}