forked from balderdashy/sails-postgresql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.23 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
{
"name": "sails-postgresql",
"description": "a postgreSQL adapter for Waterline and Sails.js",
"version": "0.12.2",
"author": "Cody Stoltman <[email protected]>",
"url": "http://github.com/balderdashy/sails-postgresql",
"keywords": [
"postgresql",
"orm",
"waterline",
"sails"
],
"repository": {
"type": "git",
"url": "git://github.com/balderdashy/sails-postgresql.git"
},
"dependencies": {
"async": "1.5.2",
"lodash": "3.10.1",
"pg": "4.5.5",
"waterline-cursor": "0.0.7",
"waterline-errors": "0.10.1",
"waterline-sequel": "0.6.4"
},
"devDependencies": {
"mocha": "2.5.3",
"should": "9.0.0",
"waterline-adapter-tests": "~0.12.1"
},
"scripts": {
"test": "make test",
"docker": "docker-compose run adapter bash"
},
"main": "lib/adapter",
"directories": {
"lib": "./lib"
},
"license": "MIT",
"bugs": "https://github.com/balderdashy/sails-postgresql/issues",
"waterlineAdapter": {
"waterlineVersion": "~0.10.0",
"interfaces": [
"semantic",
"queryable",
"migratable",
"associations",
"sql"
],
"features": [
"crossAdapter",
"unique",
"autoIncrement",
"schemas"
]
}
}