Skip to content

Commit fa14340

Browse files
committed
First crack at monorepo
1 parent 30f67bb commit fa14340

File tree

118 files changed

+5536
-49
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+5536
-49
lines changed

lerna.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"packages": [
3+
"packages/*"
4+
],
5+
"npmClient": "yarn",
6+
"useWorkspaces": true,
7+
"version": "independent"
8+
}

package.json

+10-49
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,15 @@
11
{
2-
"name": "pg",
3-
"version": "7.14.0",
4-
"description": "PostgreSQL client - pure javascript & libpq with the same API",
5-
"keywords": [
6-
"database",
7-
"libpq",
8-
"pg",
9-
"postgre",
10-
"postgres",
11-
"postgresql",
12-
"rdbms"
2+
"name": "node-postgres",
3+
"description": "node postgres monorepo",
4+
"main": "index.js",
5+
"private": true,
6+
"repository": "[email protected]:brianc/node-postgres.git",
7+
"author": "Brian M. Carlson <[email protected]>",
8+
"license": "MIT",
9+
"workspaces": [
10+
"packages/*"
1311
],
14-
"homepage": "http://github.com/brianc/node-postgres",
15-
"repository": {
16-
"type": "git",
17-
"url": "git://github.com/brianc/node-postgres.git"
18-
},
19-
"author": "Brian Carlson <[email protected]>",
20-
"main": "./lib",
21-
"dependencies": {
22-
"buffer-writer": "2.0.0",
23-
"packet-reader": "1.0.0",
24-
"pg-connection-string": "0.1.3",
25-
"pg-pool": "^2.0.7",
26-
"pg-types": "^2.1.0",
27-
"pgpass": "1.x",
28-
"semver": "4.3.2"
29-
},
3012
"devDependencies": {
31-
"async": "0.9.0",
32-
"bluebird": "3.5.2",
33-
"co": "4.6.0",
34-
"eslint": "^6.0.1",
35-
"eslint-config-standard": "^13.0.1",
36-
"eslint-plugin-import": "^2.18.1",
37-
"eslint-plugin-node": "^9.1.0",
38-
"eslint-plugin-promise": "^4.2.1",
39-
"eslint-plugin-standard": "^4.0.0",
40-
"pg-copy-streams": "0.3.0"
41-
},
42-
"minNativeVersion": "2.0.0",
43-
"scripts": {
44-
"test": "make test-all"
45-
},
46-
"files": [
47-
"lib",
48-
"SPONSORS.md"
49-
],
50-
"license": "MIT",
51-
"engines": {
52-
"node": ">= 4.5.0"
13+
"lerna": "^3.19.0"
5314
}
5415
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

packages/pg/package.json

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"name": "pg",
3+
"version": "7.14.0",
4+
"description": "PostgreSQL client - pure javascript & libpq with the same API",
5+
"keywords": [
6+
"database",
7+
"libpq",
8+
"pg",
9+
"postgre",
10+
"postgres",
11+
"postgresql",
12+
"rdbms"
13+
],
14+
"homepage": "http://github.com/brianc/node-postgres",
15+
"repository": {
16+
"type": "git",
17+
"url": "git://github.com/brianc/node-postgres.git"
18+
},
19+
"author": "Brian Carlson <[email protected]>",
20+
"main": "./lib",
21+
"dependencies": {
22+
"buffer-writer": "2.0.0",
23+
"packet-reader": "1.0.0",
24+
"pg-connection-string": "0.1.3",
25+
"pg-pool": "^2.0.7",
26+
"pg-types": "^2.1.0",
27+
"pgpass": "1.x",
28+
"semver": "4.3.2"
29+
},
30+
"devDependencies": {
31+
"async": "0.9.0",
32+
"bluebird": "3.5.2",
33+
"co": "4.6.0",
34+
"eslint": "^6.0.1",
35+
"eslint-config-standard": "^13.0.1",
36+
"eslint-plugin-import": "^2.18.1",
37+
"eslint-plugin-node": "^9.1.0",
38+
"eslint-plugin-promise": "^4.2.1",
39+
"eslint-plugin-standard": "^4.0.0",
40+
"pg-copy-streams": "0.3.0"
41+
},
42+
"minNativeVersion": "2.0.0",
43+
"scripts": {
44+
"test": "make test-all"
45+
},
46+
"files": [
47+
"lib",
48+
"SPONSORS.md"
49+
],
50+
"license": "MIT",
51+
"engines": {
52+
"node": ">= 4.5.0"
53+
}
54+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)