Skip to content

Commit

Permalink
chore: drop node 16 and add node 22
Browse files Browse the repository at this point in the history
  • Loading branch information
perrin4869 committed May 1, 2024
1 parent ee64160 commit 02fe27b
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 94 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
strategy:
matrix:
node-version:
- 16.x
- 18.x
- 20.x
- 22.x
mssql-version:
- ^7.0.0
- ^8.0.0
Expand Down
186 changes: 93 additions & 93 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,99 +1,99 @@
{
"name": "postgrator-cli",
"version": "7.0.0",
"description": "Command line interface for Postgrator",
"author": "Matti Lehtinen <[email protected]> (https://twitter.com/MattiLehtinen)",
"type": "module",
"bin": {
"postgrator": "./index.js"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"lint": "eslint --cache .",
"test": "node test/postgrator-cli-tests.js",
"cover": "c8 npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/MattiLehtinen/postgrator-cli"
},
"files": [
"LICENSE.md",
"README.md",
"index.js",
"lib"
],
"keywords": [
"cli",
"command",
"line",
"npm",
"scripts",
"postgrator",
"postgres",
"sql",
"migrator",
"migration",
"runner",
"mysql",
"sql",
"import",
"files",
"server",
"version control",
"source control"
],
"license": "MIT",
"dependencies": {
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"lilconfig": "^3.1.1",
"p-tap": "^4.0.0",
"postgrator": "^7.2.0",
"yaml": "^2.4.1"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
"c8": "^9.1.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"crlf": "^1.1.1",
"dirname-filename-esm": "^1.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-unicorn": "^51.0.1",
"mock-cwd": "^1.0.0",
"mssql": "^10.0.2",
"mysql": "^2.18.1",
"p-each-series": "^3.0.0",
"p-event": "^6.0.1",
"pg": "^8.11.4",
"sqlite3": "^5.1.7"
},
"peerDependencies": {
"mssql": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"mysql": "^2.0.0",
"pg": "^8.0.0",
"sqlite3": "^5.0.0"
},
"peerDependenciesMeta": {
"mssql": {
"optional": true
"name": "postgrator-cli",
"version": "7.0.0",
"description": "Command line interface for Postgrator",
"author": "Matti Lehtinen <[email protected]> (https://twitter.com/MattiLehtinen)",
"type": "module",
"bin": {
"postgrator": "./index.js"
},
"mysql": {
"optional": true
"engines": {
"node": ">=18.0.0"
},
"sqlite3": {
"optional": true
"scripts": {
"lint": "eslint --cache .",
"test": "node test/postgrator-cli-tests.js",
"cover": "c8 npm test"
},
"pg": {
"optional": true
"repository": {
"type": "git",
"url": "https://github.com/MattiLehtinen/postgrator-cli"
},
"files": [
"LICENSE.md",
"README.md",
"index.js",
"lib"
],
"keywords": [
"cli",
"command",
"line",
"npm",
"scripts",
"postgrator",
"postgres",
"sql",
"migrator",
"migration",
"runner",
"mysql",
"sql",
"import",
"files",
"server",
"version control",
"source control"
],
"license": "MIT",
"dependencies": {
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"lilconfig": "^3.1.1",
"p-tap": "^4.0.0",
"postgrator": "^7.2.0",
"yaml": "^2.4.1"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
"c8": "^9.1.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"crlf": "^1.1.1",
"dirname-filename-esm": "^1.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-unicorn": "^51.0.1",
"mock-cwd": "^1.0.0",
"mssql": "^10.0.2",
"mysql": "^2.18.1",
"p-each-series": "^3.0.0",
"p-event": "^6.0.1",
"pg": "^8.11.4",
"sqlite3": "^5.1.7"
},
"peerDependencies": {
"mssql": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"mysql": "^2.0.0",
"pg": "^8.0.0",
"sqlite3": "^5.0.0"
},
"peerDependenciesMeta": {
"mssql": {
"optional": true
},
"mysql": {
"optional": true
},
"sqlite3": {
"optional": true
},
"pg": {
"optional": true
}
}
}
}

0 comments on commit 02fe27b

Please sign in to comment.