forked from loopbackio/loopback-connector-postgresql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "loopback-connector-postgresql",
"version": "3.0.1",
"description": "Loopback PostgreSQL Connector",
"engines": {
"node": ">=4"
},
"keywords": [
"StrongLoop",
"LoopBack",
"PostgreSQL",
"DataSource",
"Connector"
],
"main": "index.js",
"scripts": {
"pretest": "node pretest.js",
"test": "mocha -R spec --timeout 10000 --require test/init.js test/*.test.js",
"lint": "eslint .",
"posttest": "npm run lint"
},
"dependencies": {
"async": "^0.9.0",
"bluebird": "^3.4.6",
"debug": "^2.1.1",
"loopback-connector": "^4.0.0",
"pg": "^6.0.0",
"strong-globalize": "^2.6.2",
"uuid": "^3.0.1"
},
"devDependencies": {
"eslint": "^2.13.1",
"eslint-config-loopback": "^4.0.0",
"loopback-datasource-juggler": "^3.0.0",
"mocha": "^2.1.0",
"rc": "^1.0.0",
"should": "^8.0.2",
"sinon": "^1.15.4"
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-connector-postgresql.git"
},
"license": "Artistic-2.0"
}