This repository has been archived by the owner on Feb 28, 2023. It is now read-only.
forked from swelham/sails-mssql
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
70 lines (70 loc) · 1.46 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
65
66
67
68
69
70
{
"name": "sails-mssql",
"version": "2.1.10",
"description": "SQL Server Adapter for Sails / Waterline",
"main": "lib/adapter.js",
"scripts": {
"test": "node test/integration/runner -R spec -b",
"unit-test": "mocha test/unit || echo completed"
},
"repository": {
"type": "git",
"url": "git://github.com/intel/sails-mssql.git"
},
"keywords": [
"sails",
"sails-mssql",
"sails-sqlserver",
"sql server",
"sqlserver",
"microsoft",
"azure",
"adapter",
"waterline",
"sails.js",
"mssql"
],
"author": "dave preston <drpresto@yahoo.com>",
"contributors": [
"balderdashy",
"Stuart Welham",
"wxactly",
"Seich",
"tjwebb",
"jaredfromsubway"
],
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.1",
"lodash": "^4.17.21",
"machinepack-mssql": "^1.3.1",
"moment": "^2.29.4",
"mssql": "^6.2.0",
"underscore.string": "^3.3.6"
},
"devDependencies": {
"captains-log": "^2.0.3",
"chai": "^4.2.0",
"mocha": "^10.2.0",
"proxyquire": "^2.1.0",
"waterline-adapter-tests": "github:davepreston/waterline-adapter-tests#patch-1"
},
"waterlineAdapter": {
"type": "sails-mssql",
"interfaces": [
"semantic",
"associations",
"queryable",
"sql",
"migratable"
],
"waterlineVersion": "~0.13.0"
},
"possibleinterfaces": [
"semantic",
"associations",
"queryable",
"sql",
"migratable"
]
}