-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
71 lines (71 loc) · 1.98 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
70
71
{
"name": "idb-connector",
"version": "1.2.19",
"description": "A Node.js DB2 driver for IBM i",
"homepage": "https://github.com/IBM/nodejs-idb-connector",
"author": "IBM",
"license": "MIT",
"keywords": [
"DB2",
"IBMi",
"iSeries",
"OS400"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/IBM/nodejs-idb-connector.git"
},
"bugs": {
"url": "https://github.com/IBM/nodejs-idb-connector/issues"
},
"contributors": [
"Xu Meng <[email protected]> (https://github.com/dmabupt)",
"Abdirahim Musse <[email protected]> (https://github.com/abmusse)",
"Aaron Bartell <[email protected]> (https://github.com/aaronbartell)",
"Kevin Adler <[email protected]> (https://github.com/kadler)",
"Mark Irish <[email protected]> (https://github.com/markdirish)"
],
"os": [
"os400",
"aix"
],
"gypfile": true,
"main": "lib/db2a.js",
"files": [
"src/",
"lib/"
],
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "ln -sf ./build-tmp-napi-v3 ./build && ./node_modules/mocha/bin/mocha.js --timeout 5s",
"install": "node-pre-gyp install --fallback-to-build",
"release": "./node_modules/release-it/bin/release-it.js"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10",
"node-addon-api": "^3.1.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"bindings": "^1.5.0",
"chai": "^4.3.6",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.1.0",
"release-it": "^17.0.5"
},
"binary": {
"module_name": "db2ia",
"module_path": "./lib/binding/{configuration}/napi{napi_build_version}-ibmi-{arch}/",
"remote_path": "./{version}/",
"package_name": "{module_name}-v{version}-napi{napi_build_version}-ibmi-{arch}.tar.gz",
"host": "https://github.com/IBM/nodejs-idb-connector/releases/download",
"napi_versions": [
3
]
}
}