forked from tediousjs/tedious
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.91 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.91 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"author": "Mike D Pilsbury <mike.pilsbury@gmail.com>",
"contributors": [
"Alex Robson",
"Arthur Schreiber",
"Bret Copeland <bret@atlantisflight.org> (https://github.com/bretcope)",
"Bryan Ross <bryan@rossipedia.com> (https://github.com/rossipedia)",
"Ciaran Jessup <ciaranj@gmail.com>",
"Cort Fritz <cfritz@caa.com>",
"lastonesky",
"Patrik Simek <patrik@patriksimek.cz>",
"Phil Dodderidge <pdodde@poyntz.com>",
"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": {
"@azure/ms-rest-nodeauth": "^2.0.2",
"@types/node": "^12.6.9",
"big-number": "1.0.0",
"bl": "^3.0.0",
"depd": "^2.0.0",
"iconv-lite": "^0.4.23",
"native-duplexpair": "^1.0.0",
"punycode": "^2.1.0",
"readable-stream": "^3.4.0",
"sprintf-js": "^1.1.2"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.5.5",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@commitlint/travis-cli": "^8.0.0",
"async": "^2.6.1",
"babel-eslint": "^11.0.0-beta.0",
"babel-plugin-istanbul": "^5.2.0",
"benchmark": "^2.1.0",
"chai": "^4.1.2",
"codecov": "^3.5.0",
"eslint": "^5.16.0",
"mitm": "^1.7.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.12",
"sinon": "^7.3.2",
"typescript": "^3.5.3"
},
"scripts": {
"lint": "eslint src test --ext .js,.ts && tsc",
"test": "mocha test/unit test/unit/token test/unit/tracking-buffer",
"test-integration": "mocha test/integration/",
"test-all": "mocha test/unit/ test/unit/token/ test/unit/tracking-buffer test/integration/",
"build": "rimraf lib && babel src --out-dir lib --extensions .js,.ts",
"prepublish": "npm run build",
"semantic-release": "semantic-release"
},
"babel": {
"ignore": [
"./src/**/*.d.ts"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": 6
}
}
],
"@babel/preset-typescript"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"nyc": {
"sourceMap": false,
"instrument": false,
"extension": [ ".ts" ]
}
}