1
mirror of https://github.com/jakejarvis/careful-downloader.git synced 2025-04-26 17:58:26 -04:00
careful-downloader/package.json
dependabot[bot] 3f5b346389
📦 npm: Bump mocha from 9.2.0 to 10.2.0
Bumps [mocha](https://github.com/mochajs/mocha) from 9.2.0 to 10.2.0.
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mochajs/mocha/compare/v9.2.0...v10.2.0)

---
updated-dependencies:
- dependency-name: mocha
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-12 03:14:39 +00:00

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": "^10.0.0",
"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": "^9.0.13",
"chai": "^4.3.6",
"eslint": "^8.9.0",
"mocha": "^10.2.0"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"keywords": [
"download",
"extract",
"checksum",
"hash",
"file",
"http",
"url",
"security",
"backend"
]
}