forked from tediousjs/tedious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.83 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
96
97
98
99
100
101
{
"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": ">= 6"
},
"publishConfig": {
"tag": "next"
},
"dependencies": {
"big-number": "1.0.0",
"bl": "^2.0.1",
"depd": "^1.1.2",
"iconv-lite": "^0.4.23",
"native-duplexpair": "^1.0.0",
"punycode": "^2.1.0",
"readable-stream": "^3.0.3",
"sprintf-js": "^1.1.1"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/travis-cli": "^7.1.2",
"async": "^2.6.1",
"babel-eslint": "^10.0.1",
"benchmark": "^2.1.0",
"chai": "^4.1.2",
"eslint": "^5.6.0",
"flow-bin": "^0.81.0",
"mitm": "^1.3.2",
"mocha": "^5.2.0",
"nodeunit": "^0.11.3",
"rimraf": "^2.6.1",
"semantic-release": "^15.9.16",
"sinon": "^6.3.4"
},
"scripts": {
"lint": "eslint src test && flow",
"test": "nodeunit --reporter minimal test/setup.js test/unit/ test/unit/token/ test/unit/tracking-buffer && mocha test/unit test/unit/token test/unit/tracking-buffer",
"test-integration": "nodeunit --reporter minimal test/setup.js test/integration/ && mocha test/integration/",
"test-all": "nodeunit --reporter minimal test/setup.js test/unit/ test/unit/token/ test/unit/tracking-buffer test/integration/ && mocha 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"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": 6
}
}
],
"@babel/flow"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}