forked from wvanbergen/node-vertica
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.15 KB
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": "vertica",
"version": "0.6.0",
"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 ./node_modules/mocha/bin/_mocha --compilers coffee:coffee-script/register test/**/*.coffee test/unit/*.js",
"test:unit": "node ./node_modules/mocha/bin/_mocha --compilers coffee:coffee-script/register test/unit/*.coffee test/unit/*.js"
}
}