forked from w1nk/node-odbc
-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
41 lines (41 loc) · 912 Bytes
/
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
{
"name": "odbc",
"description": "unixodbc bindings for node",
"version": "1.4.10",
"main": "lib/odbc.js",
"types": "./lib/odbc.d.ts",
"homepage": "http://github.com/wankdanker/node-odbc/",
"repository": {
"type": "git",
"url": "git://github.com/wankdanker/node-odbc.git"
},
"bugs": {
"url": "https://github.com/w1nk/node-odbc/issues"
},
"contributors": [
{
"name": "Dan VerWeire",
"email": "[email protected]"
},
{
"name": "Lee Smith",
"email": "[email protected]"
}
],
"directories": {
"lib": "."
},
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"install": "node-gyp configure build",
"test": "cd test && node run-tests.js",
"publish": "npm publish --registry=https://registry.npmjs.org --tag=v1-latest"
},
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.14.2"
},
"gypfile": true
}