You've already forked careful-downloader
mirror of
https://github.com/jakejarvis/careful-downloader.git
synced 2025-09-18 13:45:32 -04:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [fs-extra](https://github.com/jprichardson/node-fs-extra) and [@types/fs-extra](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/fs-extra). These dependencies needed to be updated together. Updates `fs-extra` from 10.0.0 to 11.1.1 - [Release notes](https://github.com/jprichardson/node-fs-extra/releases) - [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md) - [Commits](https://github.com/jprichardson/node-fs-extra/compare/10.0.0...11.1.1) Updates `@types/fs-extra` from 9.0.13 to 11.0.1 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/fs-extra) --- updated-dependencies: - dependency-name: fs-extra dependency-type: direct:production update-type: version-update:semver-major - dependency-name: "@types/fs-extra" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
59 lines
1.3 KiB
JSON
59 lines
1.3 KiB
JSON
{
|
|
"name": "careful-downloader",
|
|
"version": "2.0.2",
|
|
"description": "🕵️♀️ Downloads a file and its checksums, validates the hash, and optionally extracts it if safe.",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/jakejarvis/careful-downloader",
|
|
"author": {
|
|
"name": "Jake Jarvis",
|
|
"email": "jake@jarv.is",
|
|
"url": "https://jarv.is/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jakejarvis/careful-downloader.git"
|
|
},
|
|
"type": "module",
|
|
"exports": "./index.js",
|
|
"types": "./index.d.ts",
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts",
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"test": "eslint . && mocha"
|
|
},
|
|
"dependencies": {
|
|
"debug": "^4.3.3",
|
|
"decompress": "^4.2.1",
|
|
"fs-extra": "^11.1.1",
|
|
"got": "^11.8.3",
|
|
"is-path-inside": "^4.0.0",
|
|
"tempy": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@jakejarvis/eslint-config": "github:jakejarvis/eslint-config#main",
|
|
"@types/debug": "^4.1.7",
|
|
"@types/decompress": "^4.2.4",
|
|
"@types/fs-extra": "^11.0.1",
|
|
"chai": "^4.3.6",
|
|
"eslint": "^8.9.0",
|
|
"mocha": "^9.2.0"
|
|
},
|
|
"engines": {
|
|
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
},
|
|
"keywords": [
|
|
"download",
|
|
"extract",
|
|
"checksum",
|
|
"hash",
|
|
"file",
|
|
"http",
|
|
"url",
|
|
"security",
|
|
"backend"
|
|
]
|
|
}
|