-
Notifications
You must be signed in to change notification settings - Fork 152
/
package.json
61 lines (61 loc) · 1.73 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
{
"name": "sails-postgresql",
"description": "a PostgreSQL adapter for Waterline and Sails.js",
"version": "5.0.1",
"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": {
"@sailshq/lodash": "^3.10.2",
"async": "2.6.4",
"flaverr": "^1.2.5",
"machine": "^15.0.0-21",
"machinepack-postgresql": "^4.0.0",
"waterline-utils": "^1.3.10"
},
"devDependencies": {
"benchmark": "2.1.1",
"eslint": "3.5.0",
"mocha": "3.0.2",
"waterline-adapter-tests": "^1.0.0-2"
},
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha test/adapter/unit --recursive && node test/adapter/integration/runner",
"fasttest": "node ./node_modules/mocha/bin/mocha test/adapter/unit --recursive && node test/adapter/integration/runner",
"pretest": "nodever=`node -e \"console.log('\\`node -v\\`'[1]);\"` && if [ $nodever != \"0\" ]; then npm run lint; fi",
"lint": "eslint lib helpers test",
"docker": "docker-compose run adapter bash",
"benchmark": "node ./node_modules/mocha/bin/mocha test/benchmarks --recursive"
},
"main": "lib/adapter",
"directories": {
"lib": "./lib"
},
"license": "MIT",
"bugs": "https://github.com/balderdashy/sails-postgresql/issues",
"waterlineAdapter": {
"waterlineVersion": "~0.13.0",
"interfaces": [
"semantic",
"queryable",
"migratable",
"associations",
"sql"
],
"features": [
"crossAdapter",
"unique",
"autoIncrement",
"schemas"
]
}
}