forked from tediousjs/node-mssql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.08 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
{
"author": {
"name": "Patrik Simek",
"url": "https://patriksimek.cz"
},
"name": "mssql",
"description": "Microsoft SQL Server client for Node.js.",
"keywords": [
"database",
"mssql",
"sql",
"server",
"msnodesql",
"sqlserver",
"tds",
"node-tds",
"tedious",
"node-sqlserver",
"sqlserver",
"msnodesqlv8",
"azure",
"node-mssql"
],
"version": "4.1.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/patriksimek/node-mssql"
},
"license": "MIT",
"dependencies": {
"debug": "^2.6.3",
"generic-pool": "^3.1.7",
"tedious": "^2.0.0"
},
"devDependencies": {
"mocha": "^2.1.0",
"standard": "^9.0.2"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "standard && node_modules/.bin/mocha test/common/unit.js",
"test-tedious": "node_modules/.bin/mocha test/tedious",
"test-msnodesqlv8": "node_modules/.bin/mocha test/msnodesqlv8",
"test-cli": "node_modules/.bin/mocha test/common/cli.js"
},
"bin": {
"mssql": "./bin/mssql"
}
}