strikeentco/yarl

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "yarl",
  "author": "Alexey Bystrov <strikeentco@gmail.com>",
  "version": "3.0.0",
  "description": "Promise based, easy to use, with built-in multipart/form-data and gzip/deflate handling support - yet another request library (yarl)",
  "engines": {
    "node": ">=7.8.0"
  },
  "keywords": [
    "http",
    "https",
    "request",
    "multipart",
    "form-data",
    "url",
    "yarl",
    "promise",
    "async",
    "json",
    "gzip",
    "deflate"
  ],
  "main": "./main.js",
  "files": [
    "lib",
    "main.js"
  ],
  "scripts": {
    "test": "mocha test",
    "lint": "eslint main.js lib/**",
    "check": "npm run lint && npm run test",
    "cover": "nyc ./node_modules/mocha/bin/_mocha && nyc report --reporter=html",
    "test-on-travis": "nyc ./node_modules/mocha/bin/_mocha && nyc report --reporter=lcovonly"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/strikeentco/yarl.git"
  },
  "bugs": {
    "url": "https://github.com/strikeentco/yarl/issues"
  },
  "dependencies": {
    "multi-part": "^2.0.0"
  },
  "devDependencies": {
    "body-parser": "^1.17.2",
    "eslint": "^3.19.0",
    "eslint-config-airbnb": "^14.1.0",
    "eslint-plugin-import": "^2.7.0",
    "eslint-plugin-jsx-a11y": "^4.0.0",
    "eslint-plugin-react": "^6.10.3",
    "express": "^4.15.3",
    "mocha": "^3.4.2",
    "multer": "^1.3.0",
    "nyc": "^11.0.3",
    "should": "^11.2.1"
  },
  "license": "MIT"
}