Files
nodejs-fm/package.json
dependabot[bot] a87e196361 Bump flat and mocha
Bumps [flat](https://github.com/hughsk/flat) to 5.0.2 and updates ancestor dependency [mocha](https://github.com/mochajs/mocha). These dependencies need to be updated together.


Updates `flat` from 4.1.0 to 5.0.2
- [Release notes](https://github.com/hughsk/flat/releases)
- [Commits](https://github.com/hughsk/flat/compare/4.1.0...5.0.2)

Updates `mocha` from 6.2.3 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/v6.2.3...v10.2.0)

---
updated-dependencies:
- dependency-name: flat
  dependency-type: indirect
- dependency-name: mocha
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-30 17:42:26 +00:00

44 lines
998 B
JSON

{
"name": "nodejs-fm",
"version": "1.0.0",
"description": "Barebones file manager for a remote location",
"main": "index.js",
"scripts": {
"start": "node .",
"test": "mocha test.js --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisvrose/nodejs-fm.git"
},
"prettier": {
"tabWidth": 4,
"semi": true
},
"keywords": [
"file-manager",
"file-viewer"
],
"author": "Christopher Rose",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisvrose/nodejs-fm/issues"
},
"homepage": "https://github.com/chrisvrose/nodejs-fm#readme",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.1",
"body-parser": "^1.19.0",
"connect-busboy": "0.0.2",
"express": "^4.17.1",
"jquery": "^3.5.1",
"mocha": "^10.2.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/node": "^14.14.10",
"chai": "^4.2.0",
"chai-http": "^4.3.0"
}
}