forked from brianc/node-postgres
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.21 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.21 KB
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
{
"name": "mochi-pg",
"version": "7.11.0",
"description": "PostgreSQL chrome app client",
"keywords": [
"database",
"libpq",
"pg",
"postgre",
"postgres",
"postgresql",
"rdbms"
],
"homepage": "http://github.com/osmanmesutozcan/mochi-postgres",
"repository": {
"type": "git",
"url": "git://github.com/osmanmesutozcan/mochi-postgres.git"
},
"author": "Brian Carlson <brian.m.carlson@gmail.com>",
"main": "./lib",
"dependencies": {
"buffer-writer": "2.0.0",
"eventemitter3": "^4.0.0",
"install": "^0.13.0",
"packet-reader": "1.0.0",
"pg-connection-string": "0.1.3",
"pg-pool": "^2.0.4",
"pg-types": "~2.0.0",
"pgpass": "1.x",
"semver": "4.3.2"
},
"devDependencies": {
"async": "0.9.0",
"bluebird": "3.5.2",
"co": "4.6.0",
"pg-copy-streams": "0.3.0",
"prettier": "^1.18.2",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-merge": "^4.2.1"
},
"minNativeVersion": "2.0.0",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.dev.js",
"test": "make test-all"
},
"license": "MIT",
"engines": {
"node": ">= 4.5.0"
}
}