forked from tediousjs/node-mssql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.19 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
{
"author": {
"name": "Patrik Simek",
"url": "https://patriksimek.cz"
},
"name": "mssql",
"description": "An easy-to-use MSSQL database connector for Node.js.",
"keywords": [
"database",
"mssql",
"sql",
"msnodesql",
"sqlserver",
"tds",
"node-tds",
"tedious",
"node-sqlserver",
"sqlserver"
],
"version": "2.3.1",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/patriksimek/node-mssql"
},
"license": "MIT",
"dependencies": {
"tedious": "~1.12.3",
"generic-pool": "^2.2.0",
"promise": "^7.0.1"
},
"devDependencies": {
"coffee-script": "^1.9.3",
"mocha": "^2.1.0"
},
"engines": {
"node": ">=0.10"
},
"scripts": {
"prepublish": "node_modules/.bin/coffee --compile --output ./lib ./src",
"compile": "node_modules/.bin/coffee --compile --output ./lib ./src",
"test": "node_modules/.bin/mocha test/unit",
"test-tedious": "node_modules/.bin/mocha test/integration -g tedious",
"test-msnodesql": "node_modules/.bin/mocha test/integration -g msnodesql",
"test-tds": "node_modules/.bin/mocha test/integration -g tds",
"test-cli": "node_modules/.bin/mocha test/integration -g cli"
},
"bin": {
"mssql": "./bin/mssql"
}
}