forked from tediousjs/node-mssql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.28 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
{
"author": {
"name": "Patrik Simek",
"url": "https://patriksimek.cz"
},
"name": "mssql",
"description": "Microsoft SQL Server client for Node.js.",
"keywords": [
"database",
"mssql",
"sql",
"server",
"msnodesql",
"sqlserver",
"tds",
"node-tds",
"tedious",
"node-sqlserver",
"sqlserver",
"msnodesqlv8",
"azure",
"node-mssql"
],
"version": "7.2.1",
"main": "index.js",
"repository": "github:tediousjs/node-mssql",
"license": "MIT",
"dependencies": {
"@tediousjs/connection-string": "^0.3.0",
"debug": "^4.3.3",
"rfdc": "^1.3.0",
"tarn": "^3.0.2",
"tedious": "^14.0.0"
},
"devDependencies": {
"mocha": "^9.1.3",
"standard": "^16.0.4"
},
"engines": {
"node": ">=10"
},
"files": [
"lib/",
"bin/",
"*.js",
"*.md"
],
"scripts": {
"test": "npm run lint && npm run test-unit",
"lint": "standard",
"test-unit": "node_modules/.bin/mocha --exit -t 15000 test/common/unit.js",
"test-tedious": "node_modules/.bin/mocha --exit -t 15000 test/tedious",
"test-msnodesqlv8": "node_modules/.bin/mocha --exit -t 15000 test/msnodesqlv8",
"test-cli": "node_modules/.bin/mocha --exit -t 15000 test/common/cli.js"
},
"bin": {
"mssql": "./bin/mssql"
}
}