package.json 810 B

12345678910111213141516171819202122
  1. { "name": "busboy",
  2. "version": "1.6.0",
  3. "author": "Brian White <mscdex@mscdex.net>",
  4. "description": "A streaming parser for HTML form data for node.js",
  5. "main": "./lib/index.js",
  6. "dependencies": {
  7. "streamsearch": "^1.1.0"
  8. },
  9. "devDependencies": {
  10. "@mscdex/eslint-config": "^1.1.0",
  11. "eslint": "^7.32.0"
  12. },
  13. "scripts": {
  14. "test": "node test/test.js",
  15. "lint": "eslint --cache --report-unused-disable-directives --ext=.js .eslintrc.js lib test bench",
  16. "lint:fix": "npm run lint -- --fix"
  17. },
  18. "engines": { "node": ">=10.16.0" },
  19. "keywords": [ "uploads", "forms", "multipart", "form-data" ],
  20. "licenses": [ { "type": "MIT", "url": "http://github.com/mscdex/busboy/raw/master/LICENSE" } ],
  21. "repository": { "type": "git", "url": "http://github.com/mscdex/busboy.git" }
  22. }