1
mirror of https://github.com/jakejarvis/careful-downloader.git synced 2025-04-26 14:38:27 -04:00
careful-downloader/package.json
dependabot[bot] 56c5763a8e
📦 npm: Bump got from 12.6.0 to 13.0.0
Bumps [got](https://github.com/sindresorhus/got) from 12.6.0 to 13.0.0.
- [Release notes](https://github.com/sindresorhus/got/releases)
- [Commits](https://github.com/sindresorhus/got/compare/v12.6.0...v13.0.0)

---
updated-dependencies:
- dependency-name: got
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-05-29 04:00:08 +00:00

59 lines
1.2 KiB
JSON

{
"name": "careful-downloader",
"version": "3.0.0",
"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.4",
"decompress": "^4.2.1",
"fs-extra": "^11.1.1",
"got": "^13.0.0",
"is-path-inside": "^4.0.0",
"tempy": "^3.0.0"
},
"devDependencies": {
"@jakejarvis/eslint-config": "*",
"@types/debug": "^4.1.8",
"@types/decompress": "^4.2.4",
"@types/fs-extra": "^11.0.1",
"chai": "^4.3.7",
"eslint": "^8.41.0",
"mocha": "^10.2.0"
},
"engines": {
"node": ">=14.14"
},
"keywords": [
"download",
"extract",
"checksum",
"hash",
"file",
"http",
"url",
"security",
"backend"
]
}