Skip to content

Commit

Permalink
Drop support for Node.js 10 and 12
Browse files Browse the repository at this point in the history
  • Loading branch information
lovell committed Feb 27, 2023
1 parent 43df57f commit 6b5de4d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 22 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,16 @@ jobs:
strategy:
matrix:
os:
- macos-10.15
- ubuntu-20.04
- macos-11
- ubuntu-22.04
- windows-2019
node-version:
- 10
- 12
- 14
- 15
- 16
- 18
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down
8 changes: 0 additions & 8 deletions .npmignore

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Pull requests with mappings and tests for further scripts and languages are more

## Licence

Copyright 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Lovell Fuller and contributors.
Copyright 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2023 Lovell Fuller and contributors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
18 changes: 12 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,13 @@
"url": "git://github.com/lovell/limax"
},
"engines": {
"node": ">=10"
"node": ">=14"
},
"files": [
"CHANGELOG.md",
"index.d.ts",
"lib/"
],
"scripts": {
"test": "semistandard && nyc --reporter=html ava",
"changelog": "conventional-changelog -i CHANGELOG.md -s"
Expand All @@ -37,19 +42,20 @@
"Arjan Frans <[email protected]>",
"Fabrice Labbe <[email protected]>",
"Lukas Spieß <[email protected]>",
"David Dijan <[email protected]>"
"David Dijan <[email protected]>",
"Benjamin Piouffle <[email protected]>"
],
"license": "Apache-2.0",
"dependencies": {
"@napi-rs/pinyin": "^1.5.0",
"@napi-rs/pinyin": "^1.7.1",
"hepburn": "^1.2.0",
"lodash.deburr": "^4.1.0",
"speakingurl": "^14.0.1"
},
"devDependencies": {
"ava": "^3.15.0",
"conventional-changelog-cli": "^2.1.1",
"ava": "^5.2.0",
"conventional-changelog-cli": "^2.2.2",
"nyc": "^15.1.0",
"semistandard": "^16.0.0"
"semistandard": "^16.0.1"
}
}

0 comments on commit 6b5de4d

Please sign in to comment.