forked from swelham/sails-mssql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.31 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
{
"name": "sails-sqlserver",
"version": "0.10.10",
"description": "Official SQL Server Adapter for Sails / Waterline",
"main": "lib/adapter.js",
"scripts": {
"test": "node test/integration/runner -R spec -b"
},
"repository": {
"type": "git",
"url": "git://github.com/cnect/sails-sqlserver.git"
},
"keywords": [
"cnect",
"sails",
"sails-mssql",
"sails-sqlserver",
"sql server",
"sqlserver",
"microsoft",
"azure",
"adapter",
"waterline",
"sails.js",
"mssql",
"sqlserver"
],
"author": "Travis Webb <[email protected]>",
"contributors": [
"balderdashy",
"Stuart Welham",
"wxactly",
"Seich",
"tjwebb",
"jaredfromsubway"
],
"license": "MIT",
"dependencies": {
"captains-log": "^1.0.2",
"lodash": "^4.17.4",
"mssql": "^4.0.1",
"underscore.string": "^3.0.0",
"waterline-cursor": "0.0.7"
},
"bundledDependencies": [
"lodash",
"mssql",
"underscore.string",
"waterline-cursor"
],
"devDependencies": {
"waterline-adapter-tests": "git://github.com/tjwebb/waterline-adapter-tests",
"mocha": "*"
},
"waterlineAdapter": {
"type": "sails-sqlserver",
"interfaces": [
"semantic",
"queryable",
"associations"
],
"waterlineVersion": "~0.10.0"
}
}