-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "sequelize-odbc-mssql",
"version": "1.0.0",
"description": "Sequelize dialect driver for the @ratanakvlun/node-odbc module",
"license": "ISC",
"keywords": [
"sequelize",
"mssql",
"sqlserver",
"odbc",
"sql",
"database"
],
"homepage": "https://github.com/ratanakvlun/sequelize-odbc-mssql",
"repository": {
"type": "git",
"url": "git+https://github.com/ratanakvlun/sequelize-odbc-mssql.git"
},
"bugs": {
"url": "https://github.com/ratanakvlun/sequelize-odbc-mssql/issues"
},
"contributors": [
{
"name": "Ratanak Lun",
"email": "[email protected]"
}
],
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"@ratanakvlun/node-odbc": "https://github.com/ratanakvlun/node-odbc/releases/download/v2.0.5/ratanakvlun-node-odbc-2.0.5-win32.tgz",
"debug": "^3.1.0",
"moment": "^2.19.4",
"uuid": "^3.1.0"
},
"devDependencies": {
"eslint": "^4.13.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"config": "^1.28.1",
"mocha": "^4.0.1",
"sequelize": "^3.31.1"
},
"main": "./index.js",
"scripts": {
"lint": "eslint ./lib",
"test": "mocha"
}
}