-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
45 lines (45 loc) · 888 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
41
42
43
44
45
{
"name": "vertica",
"version": "0.5.6",
"description": "Pure Javascript client library for Vertica",
"keywords": [
"database",
"vertica",
"sql"
],
"author": "Willem van Bergen <[email protected]>",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}
],
"maintainers": [
{
"name": "Willem van Bergen",
"email": "[email protected]",
"web": "http://www.vanbergen.org"
}
],
"devDependencies": {
"semver": "~> 6.3",
"vitest": "^3.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/wvanbergen/node-vertica"
},
"main": "./lib/vertica",
"directories": {
"lib": "./lib",
"src": "./src",
"test": "./test"
},
"engine": {
"node": ">= 18.0.0"
},
"scripts": {
"test": "vitest"
},
"type": "module"
}