mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
This switches the internals to use faster protocol parsing & serializing. This results in a significant (30% - 50%) speed up in some common query patterns. There is quite a bit more performance work I need to do, but this takes care of some initial stuff & removes a big fork in the code. Remove stuff so I can see whats going on in travis better More logging Empty commit to try to kick off tests
38 lines
1.0 KiB
JSON
38 lines
1.0 KiB
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 --scope pg-cursor yarn test",
|
|
"build": "yarn lerna exec --scope pg-protocol yarn build",
|
|
"pretest": "yarn build",
|
|
"lint": "if [ -x ./node_modules/.bin/prettier ]; then eslint '*/**/*.{js,ts,tsx}'; fi;"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^2.27.0",
|
|
"@typescript-eslint/parser": "^2.27.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-prettier": "^6.10.1",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^3.1.2",
|
|
"lerna": "^3.19.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"prettier": "2.0.4"
|
|
},
|
|
"prettier": {
|
|
"semi": false,
|
|
"printWidth": 120,
|
|
"arrowParens": "always",
|
|
"trailingComma": "es5",
|
|
"singleQuote": true
|
|
}
|
|
}
|