diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56a2478..335ee25 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3.6.0 with: - node-version: '14.x' + node-version: '16' - run: npm ci --no-progress - run: npm run lint @@ -27,7 +27,7 @@ jobs: strategy: matrix: - node: [14, 16, 18] + node: [16, 18, 20] os: [ubuntu-latest, windows-latest] steps: diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 2203193..97d6871 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3.6.0 with: - node-version: '14.x' + node-version: '16' registry-url: 'https://registry.npmjs.org' - run: npm ci --no-progress --production - run: npm version --no-push --no-git-tag-version --yes ${{ github.event.release.tag_name }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d1032cf..df639e0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3.6.0 with: - node-version: '14.x' + node-version: '16' registry-url: 'https://registry.npmjs.org' - run: npm ci --no-progress --production - run: npm version --no-push --no-git-tag-version --yes ${{ github.event.release.tag_name }} diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 48f0703..893f3c7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,8 +4,8 @@ ### Node -* [Node.js](https://nodejs.org/) - v14.0.0+ -* [npm](https://www.npmjs.com/) - v6.0.0+ +* [Node.js](https://nodejs.org/) - v16.0.0+ +* [npm](https://www.npmjs.com/) - v8.0.0+ ## Install project dependencies diff --git a/LICENSE b/LICENSE index 02d0176..e1f643f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017-2022 tclindner +Copyright (c) 2017-2023 tclindner Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index e387050..bf28558 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,8 @@ First thing first, let's make sure you have the necessary pre-requisites. #### Node -* [Node.js](https://nodejs.org/) - v14.0.0+ -* [npm](http://npmjs.com) - v6.0.0+ +* [Node.js](https://nodejs.org/) - v16.0.0+ +* [npm](http://npmjs.com) - v8.0.0+ ### Command @@ -62,4 +62,4 @@ Please see [CHANGELOG.md](CHANGELOG.md). ## License -Copyright (c) 2017-2022 Thomas Lindner. Licensed under the MIT license. +Copyright (c) 2017-2023 Thomas Lindner. Licensed under the MIT license. diff --git a/package.json b/package.json index 6b284bf..2e8ac61 100644 --- a/package.json +++ b/package.json @@ -48,11 +48,11 @@ "prettier": "^2.8.8" }, "peerDependencies": { - "npm-package-json-lint": "^6.4.0" + "npm-package-json-lint": "^7.0.0" }, "engines": { - "node": ">=14.0.0", - "npm": ">=6.0.0" + "node": ">=16.0.0", + "npm": ">=8.0.0" }, "license": "MIT" }