forked from my8bird/node-leveldb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "leveldb",
"keywords": [
"database",
"leveldb"
],
"description": "Bindings for using LevelDB through node.",
"homepage": "https://github.com/my8bird/node-leveldb",
"version": "0.6.2",
"main": "lib",
"engines": {
"node": "~0.6.x"
},
"scripts": {
"prepublish": "make coffee",
"install": "make build pkgclean && if [ ! -f ./lib/index.js ]; then make coffee; fi",
"test": "make test"
},
"repository": {
"type": "git",
"url": "https://github.com/my8bird/node-leveldb.git"
},
"bugs": {
"url": "https://github.com/my8bird/node-leveldb/issues"
},
"dependencies": {
},
"devDependencies": {
"coffee-script": "~1.2.0",
"mocha": "~0.11.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"
]
}