forked from patriksimek/connect-mssql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 946 Bytes
/
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
{
"author": {
"name": "Patrik Simek",
"url": "https://patriksimek.cz"
},
"name": "connect-mssql",
"description": "SQL Server session store for Connect/Express",
"keywords": [
"database",
"mssql",
"sql",
"msnodesql",
"sqlserver",
"tds",
"node-tds",
"tedious",
"node-sqlserver",
"sqlserver",
"session",
"sessions",
"express",
"connect"
],
"version": "1.3.2",
"main": "lib/store.js",
"repository": {
"type": "git",
"url": "https://github.com/patriksimek/connect-mssql"
},
"license": "MIT",
"dependencies": {
"mssql": "^2.1.5"
},
"devDependencies": {
"coffee-script": "^1.9.0",
"mocha": "^2.1.0",
"express-session": "*"
},
"engines": {
"node": ">=0.10"
},
"scripts": {
"prepublish": "node_modules/.bin/coffee --compile --output ./lib ./src",
"compile": "node_modules/.bin/coffee --compile --output ./lib ./src",
"test-integration": "node_modules/.bin/mocha test/integration"
}
}