UNPKG

3.57 kBJSONView Raw
1{
2 "author": "Mike D Pilsbury <mike.pilsbury@gmail.com>",
3 "contributors": [
4 "Alex Robson",
5 "Arthur Schreiber",
6 "Bret Copeland <bret@atlantisflight.org> (https://github.com/bretcope)",
7 "Bryan Ross <bryan@rossipedia.com> (https://github.com/rossipedia)",
8 "Ciaran Jessup <ciaranj@gmail.com>",
9 "Cort Fritz <cfritz@caa.com>",
10 "lastonesky",
11 "Patrik Simek <patrik@patriksimek.cz>",
12 "Phil Dodderidge <pdodde@poyntz.com>",
13 "Zach Aller"
14 ],
15 "name": "tedious",
16 "description": "A TDS driver, for connecting to MS SQLServer databases.",
17 "keywords": [
18 "sql",
19 "database",
20 "mssql",
21 "sqlserver",
22 "sql-server",
23 "tds",
24 "msnodesql",
25 "azure"
26 ],
27 "homepage": "https://github.com/tediousjs/tedious",
28 "bugs": "https://github.com/tediousjs/tedious/issues",
29 "license": "MIT",
30 "version": "18.2.0",
31 "main": "./lib/tedious.js",
32 "types": "./lib/tedious.d.ts",
33 "repository": {
34 "type": "git",
35 "url": "https://github.com/tediousjs/tedious.git"
36 },
37 "engines": {
38 "node": ">=18"
39 },
40 "publishConfig": {
41 "tag": "next"
42 },
43 "dependencies": {
44 "@azure/identity": "^3.4.1",
45 "@azure/keyvault-keys": "^4.4.0",
46 "@js-joda/core": "^5.6.1",
47 "@types/node": ">=18",
48 "bl": "^6.0.11",
49 "iconv-lite": "^0.6.3",
50 "js-md4": "^0.3.2",
51 "native-duplexpair": "^1.0.0",
52 "sprintf-js": "^1.1.3"
53 },
54 "devDependencies": {
55 "@babel/cli": "^7.23.9",
56 "@babel/core": "^7.23.9",
57 "@babel/node": "^7.23.9",
58 "@babel/preset-env": "^7.23.9",
59 "@babel/preset-typescript": "^7.23.3",
60 "@babel/register": "^7.23.7",
61 "@types/async": "^3.2.24",
62 "@types/bl": "^5.1.0",
63 "@types/chai": "^4.3.12",
64 "@types/depd": "^1.1.36",
65 "@types/lru-cache": "^5.1.1",
66 "@types/mocha": "^10.0.6",
67 "@types/sprintf-js": "^1.1.4",
68 "@typescript-eslint/eslint-plugin": "^7.0.2",
69 "@typescript-eslint/parser": "^7.0.2",
70 "async": "^3.2.5",
71 "babel-plugin-istanbul": "^6.1.1",
72 "chai": "^4.4.1",
73 "codecov": "^3.8.3",
74 "eslint": "^8.57.0",
75 "mitm": "^1.7.2",
76 "mocha": "^10.3.0",
77 "nyc": "^15.1.0",
78 "rimraf": "^5.0.5",
79 "semantic-release": "^19.0.3",
80 "sinon": "^15.2.0",
81 "typedoc": "^0.25.8",
82 "typescript": "^5.3.3"
83 },
84 "scripts": {
85 "docs": "typedoc",
86 "lint": "eslint src test --ext .js,.ts && tsc",
87 "test": "mocha --forbid-only test/unit test/unit/token test/unit/tracking-buffer",
88 "test-integration": "mocha --forbid-only test/integration/",
89 "test-all": "mocha --forbid-only test/unit/ test/unit/token/ test/unit/tracking-buffer test/integration/",
90 "build:types": "tsc --project tsconfig.build-types.json",
91 "build": "rimraf lib && babel src --out-dir lib --extensions .js,.ts && npm run build:types",
92 "prepublish": "npm run build",
93 "semantic-release": "semantic-release"
94 },
95 "babel": {
96 "sourceMaps": "both",
97 "ignore": [
98 "./src/**/*.d.ts"
99 ],
100 "presets": [
101 [
102 "@babel/preset-env",
103 {
104 "targets": {
105 "node": 18
106 }
107 }
108 ],
109 [
110 "@babel/preset-typescript",
111 {
112 "allowDeclareFields": true
113 }
114 ]
115 ],
116 "plugins": [
117 [
118 "@babel/transform-typescript",
119 {
120 "allowDeclareFields": true
121 }
122 ]
123 ]
124 },
125 "mocha": {
126 "require": "test/setup.js",
127 "timeout": 5000,
128 "extension": [
129 "js",
130 "ts"
131 ]
132 },
133 "nyc": {
134 "sourceMap": false,
135 "instrument": false,
136 "extension": [
137 ".ts"
138 ]
139 }
140}