-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
38 lines (38 loc) · 843 Bytes
/
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
{
"name": "any-db-postgres",
"version": "2.3.0",
"description": "The postgres adapter for any-db",
"main": "index.js",
"scripts": {
"test": "standard && test-any-db-adapter",
"debug": "node debug `which test-any-db-adapter`"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grncdr/node-any-db-postgres.git"
},
"bugs": {
"url": "https://github.com/grncdr/node-any-db-postgres/issues"
},
"keywords": [
"any-db",
"anydb",
"postgres",
"pg",
"adapter"
],
"author": "Stephen Sugden <[email protected]>",
"license": "MIT",
"dependencies": {
"inherits": "~2.0.1",
"pg": "^7.4.3",
"pg-query-stream": "~0.2.0"
},
"peerDependencies": {
"any-db": "^2.1.0"
},
"devDependencies": {
"any-db-adapter-spec": "2.3.0",
"standard": "*"
}
}