-
Notifications
You must be signed in to change notification settings - Fork 438
/
package.json
141 lines (141 loc) · 3.53 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"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",
"types": "./lib/tedious.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/tediousjs/tedious.git"
},
"engines": {
"node": ">=18.17"
},
"publishConfig": {
"tag": "next",
"provenance": true
},
"dependencies": {
"@azure/core-auth": "^1.7.2",
"@azure/identity": "^4.2.1",
"@azure/keyvault-keys": "^4.4.0",
"@js-joda/core": "^5.6.3",
"@types/node": ">=18",
"bl": "^6.0.14",
"iconv-lite": "^0.6.3",
"js-md4": "^0.3.2",
"native-duplexpair": "^1.0.0",
"sprintf-js": "^1.1.3"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/node": "^7.25.0",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@babel/register": "^7.24.6",
"@types/async": "^3.2.24",
"@types/chai": "^4.3.12",
"@types/depd": "^1.1.36",
"@types/lru-cache": "^5.1.1",
"@types/mocha": "^10.0.7",
"@types/sprintf-js": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"async": "^3.2.6",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.5.0",
"codecov": "^3.8.3",
"eslint": "^8.57.0",
"mitm": "^1.7.2",
"mocha": "^10.7.3",
"nyc": "^15.1.0",
"rimraf": "^5.0.10",
"semantic-release": "^22.0.12",
"sinon": "^15.2.0",
"typedoc": "^0.26.6",
"typescript": "^5.5.4"
},
"scripts": {
"docs": "typedoc",
"lint": "eslint src test --ext .js,.ts && tsc",
"test": "mocha --forbid-only test/unit test/unit/token test/unit/tracking-buffer",
"test-integration": "mocha --forbid-only test/integration/",
"test-all": "mocha --forbid-only test/unit/ test/unit/token/ test/unit/tracking-buffer test/integration/",
"build:types": "tsc --project tsconfig.build-types.json",
"build": "rimraf lib && babel src --out-dir lib --extensions .js,.ts && npm run build:types",
"prepublish": "npm run build",
"semantic-release": "semantic-release"
},
"babel": {
"sourceMaps": "both",
"ignore": [
"./src/**/*.d.ts"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": 18
}
}
],
[
"@babel/preset-typescript",
{
"allowDeclareFields": true
}
]
],
"plugins": [
[
"@babel/transform-typescript",
{
"allowDeclareFields": true
}
]
]
},
"mocha": {
"require": "test/setup.js",
"timeout": 10000,
"extension": [
"js",
"ts"
]
},
"nyc": {
"sourceMap": false,
"instrument": false,
"extension": [
".ts"
]
}
}