forked from tediousjs/tedious
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
57
58
59
60
61
62
63
{
"author": "Mike D Pilsbury <[email protected]>",
"contributors": [
"Alex Robson",
"Arthur Schreiber",
"Bret Copeland <[email protected]> (https://github.com/bretcope)",
"Bryan Ross <[email protected]> (https://github.com/rossipedia)",
"Ciaran Jessup <[email protected]>",
"Cort Fritz <[email protected]>",
"lastonesky",
"Patrik Simek <[email protected]>",
"Phil Dodderidge <[email protected]>",
"Zach Aller"
],
"name": "tedious",
"description": "A TDS driver, for connecting to MS SQLServer databases.",
"keywords": [
"sql",
"database",
"mssql",
"sqlserver",
"sql-server",
"tds",
"msnodesql",
"azure"
],
"homepage": "https://github.com/pekim/tedious",
"bugs": "https://github.com/pekim/tedious/issues",
"license": "MIT",
"version": "1.13.1",
"main": "./lib/tedious.js",
"repository": {
"type": "git",
"url": "https://github.com/pekim/tedious.git"
},
"engines": {
"node": ">= 0.10"
},
"dependencies": {
"babel-runtime": "^5.8.19",
"big-number": "0.3.1",
"bl": "^1.0.0",
"iconv-lite": "^0.4.11",
"readable-stream": "^2.0.2",
"sprintf": "0.1.5"
},
"devDependencies": {
"async": "^1.4.0",
"babel": "^5.8.19",
"benchmark": "^1.0.0",
"coffee-script": "^1.9.3",
"nodeunit": "^0.9.1"
},
"scripts": {
"test": "nodeunit --reporter minimal test/setup.js test/unit/ test/unit/token/ test/unit/tracking-buffer",
"test-all": "nodeunit --reporter minimal test/setup.js test/unit/ test/unit/token/ test/unit/tracking-buffer test/integration/",
"test-integration": "nodeunit --reporter minimal test/setup.js test/integration/",
"prepublish": "coffee scripts/build.coffee"
},
"babel": {
"optional": [ "runtime" ]
}
}