forked from patriksimek/connect-mssql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (49 loc) · 1010 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
48
49
50
{
"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": "2.0.2",
"main": "lib/store.js",
"repository": {
"type": "git",
"url": "https://github.com/patriksimek/connect-mssql"
},
"license": "MIT",
"dependencies": {
},
"peerDependencies": {
"mssql": ">=6.0.0"
},
"devDependencies": {
"coffeescript": "^2.4.1",
"express-session": "1.17.0",
"mocha": "^6.2.2"
},
"engines": {
"node": ">=8.0"
},
"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 --require coffeescript/register test/integration"
}
}