mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
* Remove unused travis CI config * Bump eslint and friends * Fix lint errors after eslint upgrade * Remove windows and macos from CI workflow as they are actually running linux Removes the windows and macos matrix from the CI workflow as they were never actually setting the OS. Both were running against the "ubuntu-latest" OS. Trying to actually use them would not work either as neither windows or macos is supported for service containers. A different means will be needed to test on those platforms. Until that's done, this removes those from the matrix as we were simply running the same thing 3x for the same node versions.
41 lines
1.1 KiB
JSON
41 lines
1.1 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 yarn test",
|
|
"build": "tsc --build",
|
|
"build:watch": "tsc --build --watch",
|
|
"docs:build": "cd docs && yarn build",
|
|
"docs:start": "cd docs && yarn start",
|
|
"pretest": "yarn build",
|
|
"prepublish": "yarn build",
|
|
"lint": "eslint '*/**/*.{js,ts,tsx}'"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^6.17.0",
|
|
"@typescript-eslint/parser": "^6.17.0",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^5.1.2",
|
|
"lerna": "^3.19.0",
|
|
"prettier": "3.0.3",
|
|
"typescript": "^4.0.3"
|
|
},
|
|
"prettier": {
|
|
"semi": false,
|
|
"printWidth": 120,
|
|
"arrowParens": "always",
|
|
"trailingComma": "es5",
|
|
"singleQuote": true
|
|
}
|
|
}
|