forked from wvanbergen/node-vertica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1007 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
31
32
33
34
35
36
37
38
39
40
{
"name": "vertica",
"version": "0.5.7",
"description": "Pure Javascript client library for Vertica",
"keywords": ["database", "vertica", "sql"],
"author": "Willem van Bergen <willem@railsdoctors.com>",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}
],
"maintainers": [
{
"name": "Willem van Bergen",
"email": "willem@railsdoctors.com",
"web": "http://www.vanbergen.org"
}
],
"devDependencies": {
"coffee-script": "1.9.0",
"mocha": "~> 1.18.0",
"semver": "~> 6.3"
},
"repository": {
"type": "git",
"url": "git://github.com/wvanbergen/node-vertica.git"
},
"main": "./lib/vertica",
"directories": {
"lib": "./lib",
"src": "./src",
"test": "./test"
},
"engine": { "node" : ">= 0.8" },
"scripts": {
"prepublish": "cake clean && cake build",
"test": "./node_modules/mocha/bin/mocha --compilers coffee:coffee-script/register test/**/*.coffee"
}
}