mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
* Move message writing to typescript lib * Write more tests, cleanup code to some extent * Rename package to something more representing its name * Remove unused code * Small tweaks based on microbenchmarks * Rename w/o underscore
23 lines
570 B
JSON
23 lines
570 B
JSON
{
|
|
"name": "node-postgres",
|
|
"description": "node postgres monorepo",
|
|
"main": "index.js",
|
|
"private": true,
|
|
"repository": "git@github.com:brianc/node-postgres.git",
|
|
"author": "Brian M. Carlson <brian.m.carlson@gmail.com>",
|
|
"license": "MIT",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"test": "yarn lerna exec yarn test",
|
|
"build": "yarn lerna exec --scope pg-protocol yarn build",
|
|
"pretest": "yarn build",
|
|
"lint": "yarn lerna exec --parallel yarn lint"
|
|
},
|
|
"devDependencies": {
|
|
"lerna": "^3.19.0"
|
|
},
|
|
"dependencies": {}
|
|
}
|