forked from swelham/sails-mssql
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.24 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.24 KB
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
{
"name": "waterline-mssql",
"version": "0.10.9",
"description": "MS SQL Server Adapter for Waterline",
"main": "lib/adapter.js",
"scripts": {
"test": "node test/integration/runner -R spec -b"
},
"repository": {
"type": "git",
"url": "git://github.com/waterlinejs/mssql-adapter.git"
},
"keywords": [
"trails",
"trailsjs",
"sql server",
"sqlserver",
"microsoft",
"azure",
"adapter",
"waterline",
"sails.js",
"mssql",
"sqlserver"
],
"author": "Travis Webb <tjwebb@cnectdata.com>",
"contributors": [
"Stuart Welham",
"wxactly",
"Seich",
"tjwebb",
"jaredfromsubway"
],
"license": "MIT",
"dependencies": {
"captains-log": "^0.11.11",
"lodash": "^3.8.0",
"mssql": "^2.1.3",
"underscore.string": "^3.0.0",
"waterline-cursor": "0.0.5"
},
"bundledDependencies": [
"lodash",
"mssql",
"underscore.string",
"waterline-cursor"
],
"devDependencies": {
"waterline-adapter-tests": "git://github.com/tjwebb/waterline-adapter-tests",
"mocha": "*"
},
"waterlineAdapter": {
"type": "waterline-mssql",
"interfaces": [
"semantic",
"queryable",
"associations"
],
"waterlineVersion": "~0.10.0"
}
}