forked from ItsClemi/node-odbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.17 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
{
"name": "node-odbc",
"description": "ODBC interface for NodeJS",
"author": "ItsClemi",
"version": "0.2.10",
"keywords": [
"sql",
"database",
"mssql",
"azure",
"sqlserver",
"msnodesql",
"node-sqlserver"
],
"homepage": "http://itsclemi.github.io/node-odbc/",
"bugs": "https://github.com/ItsClemi/node-odbc/issues",
"license": "Apache-2.0",
"main": "lib/node-odbc.js",
"typings": "lib/node-odbc.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/ItsClemi/node-odbc.git"
},
"engines": {
"node": ">=6.10.0"
},
"dependencies": {
"bluebird": "^3.5.0",
"mkdirp": "^0.5.1",
"nan": "^2.6.2",
"node-gyp": "^3.6.1",
"npmlog": "^4.1.0",
"request": "^2.81.0"
},
"devDependencies": {
"async": "^2.4.1",
"benchmark": "^2.1.4",
"cross-spawn": "^5.1.0",
"mocha": "^3.3.0",
"typescript": "^2.3.2",
"typings": "^2.1.1"
},
"os": [
"win32"
],
"cpu": [
"x64",
"ia32"
],
"scripts": {
"install": "node scripts/install.js",
"test": "node test/test.js",
"build": "node scripts/build.js",
"buildtsc": "tsc -p lib & tsc -p test & tsc -p scripts"
}
}