{
  "name": "formdata-node",
  "version": "1.3.1",
  "description": "FormData implementation for Node.js. Built over Readable stream and async generators. Can be used to communicate between servers with multipart/form-data format.",
  "repository": "octet-stream/form-data",
  "keywords": [
    "form-data",
    "node",
    "async-iterator",
    "stream"
  ],
  "author": "Nick K. <nick.kruchinin@gmail.com>",
  "license": "MIT",
  "main": "lib/FormData.js",
  "engines": {
    "node": ">= 8"
  },
  "scripts": {
    "lint": "node_modules/.bin/eslint src",
    "staged": "node_modules/.bin/lint-staged",
    "make": "node_modules/.bin/babel src -d .",
    "watch": "node_modules/.bin/babel src -w -d .",
    "make:ci": "node_modules/.bin/babel src -s -d .",
    "m": "yarn make",
    "w": "yarn watch",
    "cleanup": "node_modules/.bin/rimraf lib test",
    "test": "node_modules/.bin/ava",
    "coverage": "yarn cleanup && yarn make:ci && node_modules/.bin/nyc yarn test && yarn cleanup && yarn make",
    "report": "yarn cleanup && yarn make:ci && node_modules/.bin/nyc yarn test && node_modules/.bin/nyc report --reporter=html yarn test && yarn cleanup && yarn make",
    "ci": "yarn make:ci && node_modules/.bin/nyc yarn test && node_modules/.bin/nyc report --reporter=lcov yarn test && node_modules/.bin/codecov && yarn cleanup && yarn make"
  },
  "ava": {
    "files": [
      "test/**/*.js",
      "!test/__helper__/*.js"
    ]
  },
  "devDependencies": {
    "@babel/cli": "7.0.0-beta.54",
    "@babel/core": "7.0.0-beta.54",
    "@babel/plugin-proposal-async-generator-functions": "7.0.0-beta.54",
    "@babel/plugin-proposal-class-properties": "7.0.0-beta.54",
    "@babel/plugin-proposal-decorators": "7.0.0-beta.54",
    "@babel/plugin-transform-async-to-generator": "7.0.0-beta.54",
    "@babel/plugin-transform-modules-commonjs": "7.0.0-beta.54",
    "@babel/plugin-transform-runtime": "7.0.0-beta.54",
    "@octetstream/eslint-config": "3.0.0",
    "ava": "0.25.0",
    "codecov": "3.1.0",
    "eslint": "5.6.1",
    "eslint-plugin-ava": "5.1.1",
    "husky": "1.1.1",
    "lint-staged": "^7.3.0",
    "lodash.isplainobject": "4.0.6",
    "nyc": "13.0.1",
    "promise-fs": "2.0.1",
    "proxyquire": "2.1.0",
    "rimraf": "2.6.2",
    "sinon": "6.3.5",
    "supertest": "3.3.0",
    "then-busboy": "3.0.0"
  },
  "dependencies": {
    "@babel/runtime": "7.0.0-beta.54",
    "@octetstream/invariant": "1.1.0",
    "mime-types": "2.1.20",
    "nanoid": "1.2.6"
  }
}
