forked from wankdanker/node-odbc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.03 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.03 KB
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
{
"name": "odbc",
"description": "unixodbc bindings for node",
"version": "2.0.0-beta.0",
"homepage": "http://github.com/wankdanker/node-odbc/",
"main": "./lib/odbc.js",
"repository": {
"type": "git",
"url": "git://github.com/wankdanker/node-odbc.git"
},
"bugs": {
"url": "https://github.com/w1nk/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"
}
],
"directories": {
"lib": "."
},
"engines": {
"node": ">=8.16.0"
},
"scripts": {
"install": "node-gyp configure build",
"test": "mocha --slow 5000 --timeout 10000"
},
"dependencies": {
"dotenv": "^6.2.0",
"node-addon-api": "^1.3.0"
},
"gypfile": true,
"devDependencies": {
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^5.2.0"
}
}