-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.52 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": "@ratanakvlun/node-odbc",
"version": "2.0.5",
"description": "ODBC bindings for Node.js",
"license": "ISC",
"keywords": [
"odbc",
"sql",
"database"
],
"homepage": "https://github.com/ratanakvlun/node-odbc",
"repository": {
"type": "git",
"url": "git+https://github.com/ratanakvlun/node-odbc.git"
},
"bugs": {
"url": "https://github.com/ratanakvlun/node-odbc/issues"
},
"contributors": [
{
"name": "Lee Smith",
"email": "[email protected]"
},
{
"name": "Dan VerWeire",
"email": "[email protected]"
},
{
"name": "Ratanak Lun",
"email": "[email protected]"
}
],
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"argparse": "^1.0.9",
"bindings": "^1.3.0",
"nan": "^2.8.0",
"node-gyp": "^3.6.2",
"node-pre-gyp": "^0.6.39"
},
"devDependencies": {
"eslint": "^4.13.0"
},
"main": "./lib/odbc.js",
"types": "./lib/odbc.d.ts",
"binary": {
"module_name": "bindings",
"module_path": "./lib/bin/{node_abi}/{platform}/{arch}",
"host": "https://github.com/ratanakvlun/node-odbc/releases/download/v2.0.5"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"install-deps": "npm update --no-save",
"build": "npm run install-deps && node ./scripts/build.js",
"build-all": "npm run build -- --target=all --target_arch=all",
"version": "node ./scripts/version.js",
"lint": "eslint ./lib ./scripts",
"test": "echo No test specified"
}
}