forked from IBM/node-odbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.46 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
{
"name": "odbc",
"description": "unixodbc bindings for node",
"version": "2.3.6",
"homepage": "http://github.com/markdirish/node-odbc/",
"main": "lib/odbc.js",
"types": "lib/odbc.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/markdirish/node-odbc.git"
},
"bugs": {
"url": "https://github.com/markdirish/node-odbc/issues"
},
"contributors": [
{
"name": "Mark Irish",
"email": "[email protected]"
},
{
"name": "Dan VerWeire",
"email": "[email protected]"
},
{
"name": "Lee Smith",
"email": "[email protected]"
}
],
"license": "MIT",
"directories": {
"lib": "."
},
"engines": {
"node": ">=8.16.0"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"test": "mocha --slow 5000 --timeout 10000"
},
"dependencies": {
"async": "^3.0.1",
"node-addon-api": "^1.7.1",
"node-pre-gyp": "^0.14.0"
},
"gypfile": true,
"devDependencies": {
"dotenv": "^6.2.0",
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^5.2.0"
},
"binary": {
"module_name": "odbc",
"module_path": "./lib/bindings/napi-v{napi_build_version}",
"host": "https://github.com/markdirish/node-odbc/releases/download/v{version}",
"package_name": "{name}-v{version}-{platform}-{arch}-napi-v{napi_build_version}.tar.gz",
"napi_versions": [
3
]
}
}