forked from mariano/node-db-drizzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 863 Bytes
/
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
{ "name" : "db-drizzle"
, "description" : "Drizzle database bindings for Node.JS"
, "keywords": ["database","db","native","binding","library","plugin","client","drizzle","libdrizzle"]
, "homepage" : "http://nodejsdb.org/db-drizzle"
, "version" : "0.6.6"
, "engines" : { "node" : ">=0.4.1" }
, "maintainers" :
[ { "name": "Mariano Iglesias"
, "email": "[email protected]"
}
]
, "bugs" : { "web" : "http://github.com/mariano/node-db-drizzle/issues" }
, "licenses" : [ { "type" : "MIT" } ]
, "repositories" :
[ { "type" : "git"
, "url" : "http://github.com/mariano/node-db-drizzle.git"
}
]
, "main" : "./db-drizzle"
, "scripts" :
{ "install": "node-waf configure build"
, "preuninstall": "rm -rf build/*"
, "test" : "node-waf test"
, "doc" : "node-waf doc"
}
, "devDependencies" :
{ "nodeunit" : "*"
, "nodelint" : "*"
}
}