forked from tediousjs/node-mssql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.62 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
{
"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": "9.1.1",
"main": "index.js",
"repository": "github:tediousjs/node-mssql",
"license": "MIT",
"dependencies": {
"@tediousjs/connection-string": "^0.5.0",
"commander": "^11.0.0",
"debug": "^4.3.3",
"rfdc": "^1.3.0",
"tarn": "^3.0.2",
"tedious": "^16.4.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^10.0.4",
"@semantic-release/release-notes-generator": "^11.0.4",
"mocha": "^10.0.0",
"semantic-release": "^21.0.7",
"standard": "^17.0.0"
},
"engines": {
"node": ">=10"
},
"files": [
"lib/",
"bin/",
"tedious.js",
"msnodesqlv8.js"
],
"scripts": {
"commitlint": "commitlint --from origin/master --to HEAD",
"test": "npm run lint && npm run test-unit",
"lint": "standard",
"test-unit": "mocha --exit -t 15000 test/common/unit.js",
"test-tedious": "mocha --exit -t 15000 test/tedious",
"test-msnodesqlv8": "mocha --exit -t 30000 test/msnodesqlv8",
"test-cli": "mocha --exit -t 15000 test/common/cli.js"
},
"bin": {
"mssql": "./bin/mssql"
}
}