forked from tediousjs/tedious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.54 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"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/tediousjs/tedious",
"bugs": "https://github.com/tediousjs/tedious/issues",
"license": "MIT",
"version": "0.0.0-dev",
"main": "./lib/tedious.js",
"repository": {
"type": "git",
"url": "https://github.com/tediousjs/tedious.git"
},
"engines": {
"node": ">= 4"
},
"publishConfig": {
"tag": "next"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"big-number": "0.3.1",
"bl": "^1.2.0",
"iconv-lite": "^0.4.11",
"readable-stream": "^2.2.6",
"sprintf": "0.1.5"
},
"devDependencies": {
"async": "^1.4.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.26.0",
"benchmark": "^2.1.0",
"eslint": "^3.19.0",
"flow-bin": "^0.58.0",
"mitm": "^1.3.2",
"nodeunit": "^0.11.0",
"rimraf": "^2.6.1",
"semantic-release": "^6.3.2",
"sinon": "^1.17.5"
},
"scripts": {
"lint": "eslint src test && flow",
"test": "nodeunit --reporter minimal test/setup.js test/unit/ test/unit/token/ test/unit/tracking-buffer",
"test-integration": "nodeunit --reporter minimal test/setup.js test/integration/",
"test-all": "nodeunit --reporter minimal test/setup.js test/unit/ test/unit/token/ test/unit/tracking-buffer test/integration/",
"build": "rimraf lib && babel src --out-dir lib",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 4
}
}
],
"flow"
],
"plugins": [
"transform-runtime"
]
},
"release": {
"verifyConditions": "semantic-release/src/lib/plugin-noop"
}
}