You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
991 B

  1. {
  2. "name": "express-fileupload",
  3. "version": "1.3.1",
  4. "author": "Richard Girges <richardgirges@gmail.com>",
  5. "description": "Simple express file upload middleware that wraps around Busboy",
  6. "main": "./lib/index",
  7. "scripts": {
  8. "test": "nyc --reporter=html --reporter=text mocha -- -R spec",
  9. "lint": "eslint ./",
  10. "lint:fix": "eslint --fix ./",
  11. "coveralls": "nyc report --reporter=text-lcov | coveralls"
  12. },
  13. "dependencies": {
  14. "busboy": "^0.3.1"
  15. },
  16. "engines": {
  17. "node": ">=12.0.0"
  18. },
  19. "keywords": [
  20. "express",
  21. "file-upload",
  22. "upload",
  23. "forms",
  24. "multipart",
  25. "files",
  26. "busboy",
  27. "middleware"
  28. ],
  29. "license": "MIT",
  30. "repository": "richardgirges/express-fileupload",
  31. "devDependencies": {
  32. "body-parser": "^1.19.0",
  33. "coveralls": "^3.1.1",
  34. "eslint": "^7.31.0",
  35. "express": "^4.17.1",
  36. "md5": "^2.3.0",
  37. "mocha": "^9.2.0",
  38. "nyc": "^15.1.0",
  39. "rimraf": "^3.0.2",
  40. "supertest": "^4.0.2"
  41. }
  42. }