forked from tediousjs/node-mssql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.31 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
{
"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": "3.3.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/patriksimek/node-mssql"
},
"license": "MIT",
"dependencies": {
"tedious": "~1.14.0",
"generic-pool": "^2.2.0",
"promise": "^7.0.1"
},
"devDependencies": {
"coffee-script": "^1.9.3",
"mocha": "^2.1.0"
},
"engines": {
"node": ">=0.10"
},
"scripts": {
"prepublish": "node_modules/.bin/coffee --compile --output ./lib ./src",
"compile": "node_modules/.bin/coffee --compile --output ./lib ./src",
"test": "node_modules/.bin/mocha test/unit",
"test-tedious": "node_modules/.bin/mocha test/integration -g tedious",
"test-msnodesql": "node_modules/.bin/mocha test/integration -g msnodesql",
"test-msnodesqlv8": "node_modules/.bin/mocha test/integration -g msnodesqlv8",
"test-tds": "node_modules/.bin/mocha test/integration -g tds",
"test-cli": "node_modules/.bin/mocha test/integration -g cli"
},
"bin": {
"mssql": "./bin/mssql"
}
}