Update dependencies and minimum Node

This commit is contained in:
Domenic Denicola 2022-01-22 14:01:50 -05:00
commit ac56d1c4c7
4 changed files with 2666 additions and 895 deletions

View file

@ -15,7 +15,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16
- run: npm install

View file

@ -4,7 +4,7 @@ Scrapes the web serial [_Worm_](https://parahumans.wordpress.com/) and its seque
## How to use
First you'll need a modern version of [Node.js](https://nodejs.org/en/). Install whatever is current (not LTS); at least v12.10.0 is necessary.
First you'll need a modern version of [Node.js](https://nodejs.org/en/). At least v16.13.2 is necessary.
Then, open a terminal ([Mac documentation](http://blog.teamtreehouse.com/introduction-to-the-mac-os-x-command-line), [Windows documentation](http://www.howtogeek.com/235101/10-ways-to-open-the-command-prompt-in-windows-10/)) and install the program by typing

3541
npm-shrinkwrap.json generated

File diff suppressed because it is too large Load diff

View file

@ -23,19 +23,19 @@
"lint": "eslint lib"
},
"dependencies": {
"archiver": "^5.2.0",
"cli-progress": "^3.9.0",
"archiver": "^5.3.0",
"cli-progress": "^3.10.0",
"cpr": "^3.0.1",
"jsdom": "^16.4.0",
"jsdom": "^19.0.0",
"requisition": "^1.5.0",
"workerpool": "^6.1.0",
"yargs": "^16.2.0"
"workerpool": "^6.2.0",
"yargs": "^17.3.1"
},
"devDependencies": {
"eslint": "^7.20.0",
"@domenic/eslint-config": "^1.0.0"
"eslint": "^8.7.0",
"@domenic/eslint-config": "^2.0.0"
},
"engines": {
"node": ">=12.10.0"
"node": ">=16.13.2"
}
}