-
Notifications
You must be signed in to change notification settings - Fork 181
/
package.json
53 lines (53 loc) · 1.18 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
{
"name": "loopback-connector-postgresql",
"version": "7.1.8",
"description": "Loopback PostgreSQL Connector",
"keywords": [
"LoopBack",
"PostgreSQL",
"DataSource",
"Connector"
],
"license": "Artistic-2.0",
"main": "index.js",
"author": "IBM Corp.",
"repository": "github:loopbackio/loopback-connector-postgresql",
"engines": {
"node": "18 || 20 || 22"
},
"scripts": {
"pretest": "node pretest.js",
"test": "mocha test/*.test.js",
"posttest": "npm run lint",
"lint": "eslint ."
},
"files": [
"intl",
"lib",
"docs.json",
"index.js",
"setup.sh"
],
"dependencies": {
"async": "^3.2.0",
"bluebird": "^3.4.6",
"chalk": "^4.0.0",
"debug": "^4.1.1",
"loopback-connector": "^6.0.0",
"pg": "^8.0.2",
"strong-globalize": "^6.0.0",
"uuid": "^11.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"eslint": "^8.0.0",
"eslint-config-loopback": "^13.1.0",
"lodash": "^4.17.4",
"loopback-datasource-juggler": "^5.0.0",
"mocha": "^11.0.0",
"rc": "^1.0.0",
"should": "^13.2.3",
"sinon": "^19.0.0"
}
}