-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.06 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.06 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
48
49
50
51
52
53
54
{
"name": "ibm-netezza",
"version": "1.0.3",
"description": "Node.js driver for IBM Netezza databases with full protocol support",
"keywords": [
"netezza",
"nps",
"ibm",
"database",
"driver",
"client",
"sql",
"rdbms"
],
"homepage": "https://github.com/IBM/nz-node",
"repository": {
"type": "git",
"url": "git://github.com/IBM/nz-node.git"
},
"author": "Abhishek Jog",
"contributors": [
"Sagar Soni",
"Abhishek Satish",
"Brighty Jobin"
],
"main": "./lib",
"exports": {
".": {
"import": "./esm/index.mjs",
"require": "./lib/index.js",
"default": "./lib/index.js"
},
"./package.json": {
"default": "./package.json"
},
"./lib/*": "./lib/*.js",
"./lib/*.js": "./lib/*.js"
},
"dependencies": {},
"devDependencies": {},
"scripts": {
"test": "make test-all",
"build": "echo 'No build needed - this is a JavaScript package'"
},
"files": [
"lib",
"esm",
"README.md"
],
"license": "MIT",
"engines": {
"node": ">= 16.0.0"
}
}