{
  "name": "@medley/multipart",
  "version": "0.3.0",
  "description": "Medley plugin for parsing 'multipart/form-data' bodies",
  "author": "Nathan Woltman <nwoltman@outlook.com>",
  "license": "MIT",
  "main": "multipart.js",
  "files": [
    "multipart.js",
    "lib"
  ],
  "engines": {
    "node": ">=8"
  },
  "repository": "github:medleyjs/multipart",
  "homepage": "https://github.com/medleyjs/multipart",
  "bugs": "https://github.com/medleyjs/multipart/issues",
  "keywords": [
    "medley",
    "plugin",
    "multipart",
    "form-data",
    "form",
    "post"
  ],
  "eslintIgnore": [
    "coverage"
  ],
  "nyc": {
    "reporter": [
      "html",
      "text-summary"
    ],
    "check-coverage": true,
    "branches": 100,
    "lines": 100,
    "statements": 100
  },
  "peerDependencies": {
    "@medley/medley": ">=0.13.0"
  },
  "dependencies": {
    "append-field": "^1.0.0",
    "busboy": "~0.3.1",
    "on-finished": "^2.3.0"
  },
  "devDependencies": {
    "@medley/medley": "~0.13.0",
    "@nwoltman/eslint-config": "~0.5.1",
    "coveralls": "^3.0.7",
    "eslint": "^6.6.0",
    "form-data": "^2.5.1",
    "mocha": "^6.2.2",
    "nyc": "^14.1.1",
    "proxyquire": "^2.1.3",
    "testdata-w3c-json-form": "~1.0.0"
  },
  "scripts": {
    "lint": "eslint .",
    "test-only": "nyc mocha",
    "test": "eslint . && nyc mocha",
    "coveralls": "nyc report --reporter=text-lcov | coveralls"
  }
}
