-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
69 lines (69 loc) · 1.57 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "odbc",
"description": "unixodbc bindings for node",
"version": "2.4.9",
"homepage": "http://github.com/IBM/node-odbc/",
"main": "lib/odbc.js",
"types": "lib/odbc.d.ts",
"files": [
"src/",
"lib/",
"CHANGELOG.md",
"binding.gyp"
],
"repository": {
"type": "git",
"url": "git://github.com/IBM/node-odbc.git"
},
"bugs": {
"url": "https://github.com/IBM/node-odbc/issues"
},
"contributors": [
{
"name": "Mark Irish",
"email": "mirish@ibm.com"
},
{
"name": "Dan VerWeire",
"email": "dverweire@gmail.com"
},
{
"name": "Lee Smith",
"email": "notwink@gmail.com"
}
],
"license": "MIT",
"directories": {
"lib": "."
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "node-pre-gyp install --build-from-source",
"install": "node-pre-gyp install --fallback-to-build",
"test": "mocha --slow 5000 --timeout 30000"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.5",
"async": "^3.0.1",
"node-addon-api": "^3.0.2"
},
"gypfile": true,
"devDependencies": {
"dotenv": "^6.2.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"mocha": "^9.2.2"
},
"binary": {
"module_name": "odbc",
"module_path": "./lib/bindings/napi-v{napi_build_version}",
"host": "https://github.com/IBM/node-odbc/releases/download/v{version}",
"package_name": "{name}-v{version}-{platform}-{arch}-napi-v{napi_build_version}.tar.gz",
"napi_versions": [
8
]
}
}