-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
69 lines (69 loc) · 1.41 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
{
"name": "sails-db2",
"version": "1.0.0",
"description": "DB2 adapter for Sails / Waterline",
"main": "index.js",
"scripts": {
"test": "node test/integration/runner -R spec -b"
},
"repository": {
"type": "git",
"url": "https://github.com/IbuildingsItaly/sails-db2"
},
"engines": {
"node": ">=6.9.1",
"npm": "~3.10.8"
},
"keywords": [
"DB2",
"IBM",
"ibuildings",
"adapter",
"sails",
"waterline",
"orm",
"sailsjs",
"sails.js"
],
"author": "Ibuildings SRL <[email protected]> (http://ibuildings.it/)",
"contributors": [
{
"name": "Eugenio Minardi",
"email": "[email protected]",
"url": "https://github.com/kmox83"
},
{
"name": "Vincenzo (Wilk) Ferrari",
"email": "[email protected]",
"url": "https://github.com/wilk"
}
],
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"ibm_db": "~1.0.0",
"async": "~0.9.0",
"lodash": "~2.4.1",
"waterline-errors": "~0.10.0"
},
"devDependencies": {
"mocha": "*",
"root-require": "~0.2.0",
"captains-log": "~0.10.6",
"waterline-adapter-tests": "~0.10.0"
},
"waterlineAdapter": {
"waterlineVersion": "~0.10.0",
"interfaces": [
"queryable"
]
},
"sailsAdapter": {
"sailsVersion": "~0.10.0",
"implements": [
"semantic",
"queryable",
"associations"
]
}
}