forked from tediousjs/tedious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.91 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
{
"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",
"repository": {
"type": "git",
"url": "https://github.com/tediousjs/tedious.git"
},
"engines": {
"node": ">= 6"
},
"publishConfig": {
"tag": "next"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"big-number": "1.0.0",
"bl": "^1.2.2",
"depd": "^1.1.2",
"native-duplexpair": "^1.0.0",
"iconv-lite": "^0.4.23",
"punycode": "^2.1.0",
"readable-stream": "^2.3.6",
"sprintf-js": "^1.1.1"
},
"devDependencies": {
"@commitlint/cli": "^6.2.0",
"@commitlint/config-conventional": "^6.1.3",
"@commitlint/travis-cli": "^6.2.0",
"async": "^1.4.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.26.0",
"benchmark": "^2.1.0",
"chai": "^4.1.2",
"eslint": "^3.19.0",
"flow-bin": "^0.72.0",
"mitm": "^1.3.2",
"mocha": "^5.2.0",
"nodeunit": "^0.11.0",
"rimraf": "^2.6.1",
"semantic-release": "^12.2.5",
"sinon": "^1.17.5"
},
"scripts": {
"lint": "eslint src test && flow",
"test": "nodeunit --reporter minimal test/setup.js test/unit/ test/unit/token/ test/unit/tracking-buffer && mocha test/unit test/unit/token test/unit/tracking-buffer",
"test-integration": "nodeunit --reporter minimal test/setup.js test/integration/ && mocha test/integration/",
"test-all": "nodeunit --reporter minimal test/setup.js test/unit/ test/unit/token/ test/unit/tracking-buffer test/integration/ && mocha test/unit/ test/unit/token/ test/unit/tracking-buffer test/integration/",
"build": "rimraf lib && babel src --out-dir lib",
"prepublish": "npm run build",
"semantic-release": "semantic-release"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 6
}
}
],
"flow"
],
"plugins": [
"transform-runtime"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}