diff options
author | Vitaly Takmazov | 2023-03-18 01:49:50 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-06-14 06:16:56 +0300 |
commit | 4fe675b24dfdcb8eba2b8d03f573faaaa50b3bdb (patch) | |
tree | 28e58d5bae44cd95fec79faed6c582f273608729 /backup/package.json | |
parent | baae026df3007e5892541acb3f555c5a79c24500 (diff) |
[backup] 2023 update: modernize code
* Yarn -> NPM
* node:url -> WHATWG URL API
* lodash/each -> Array.forEach
* node-fetch -> Node 18 Fetch API
Diffstat (limited to 'backup/package.json')
-rw-r--r-- | backup/package.json | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/backup/package.json b/backup/package.json index 5aa71af7..419cac47 100644 --- a/backup/package.json +++ b/backup/package.json @@ -13,8 +13,12 @@ "private": true, "license": "MIT", "dependencies": { - "lodash": "^4.17.21", - "minimist": "^1.2.8", - "node-fetch": "^3.3.1" + "minimist": "^1.2.8" + }, + "devDependencies": { + "@types/node": "^18.15.3" + }, + "engines": { + "node": ">= 18" } } |