{
  "name": "insomnia-node-libcurl",
  "version": "2.0.0-alpha.0-1",
  "author": "Jonathan Cardoso <me@jonathancardoso.com>",
  "description": "Node bindings for libcurl. Based on the work from node-curl.",
  "keywords": [
    "node-curl",
    "curl",
    "libcurl",
    "node-libcurl"
  ],
  "license": "MIT",
  "homepage": "https://github.com/JCMais/node-libcurl",
  "repository": {
    "type": "git",
    "url": "git://github.com/JCMais/node-libcurl.git"
  },
  "bugs": {
    "url": "https://github.com/JCMais/node-libcurl/issues"
  },
  "main": "./index.js",
  "scripts": {
    "install": "node-pre-gyp install --fallback-to-build",
    "test": "mocha test --reporter spec --timeout 5000",
    "docs": "jsdoc2md lib/*.js > api.md",
    "postinstall": "node scripts/postinstall",
    "pregyp": "node-pre-gyp",
    "prettier": "prettier --write --single-quote true --trailing-comma es5 --print-width 120",
    "prettier:all": "yarn prettier lib/**/*.js tools/**/*.js scripts/**/*.js test/**/*.js examples/**/*.js",
    "lint": "node_modules/.bin/eslint . --max-warnings=0"
  },
  "binary": {
    "module_name": "node_libcurl",
    "module_path": "./lib/binding/",
    "host": "https://github.com/JCMais/node-libcurl/releases/download",
    "remote_path": "./v{version}/"
  },
  "bundledDependencies": [
    "node-pre-gyp"
  ],
  "dependencies": {
    "debug": "3.1.0",
    "fs-extra": "5.0.0",
    "nan": "2.10.0",
    "node-gyp": "3.8.0",
    "node-pre-gyp": "0.11.0",
    "npmlog": "4.1.2"
  },
  "devDependencies": {
    "body-parser": "^1.18.3",
    "cookie-parser": "^1.4.3",
    "eslint": "^4.19.1",
    "express": "^4.16.3",
    "http-auth": "^3.2.3",
    "husky": "^0.15.0-rc.8",
    "ink-docstrap": "^1.3.2",
    "jsdoc": "^3.5.5",
    "jsdoc-to-markdown": "^4.0.1",
    "lint-staged": "^6.1.1",
    "mocha": "^5.2.0",
    "multiparty": "^4.2.0",
    "octonode": "^0.9.3",
    "progress": "^2.0.0",
    "should": "^13.2.3",
    "prettier": "1.14.2"
  },
  "lint-staged": {
    "*.js": [
      "yarn prettier",
      "eslint --fix",
      "git add"
    ]
  },
  "engines": {
    "node": ">= 4"
  },
  "husky": {
    "hooks": {
      "commitmsg": "commitlint -e $GIT_PARAMS",
      "pre-commit": "lint-staged"
    }
  }
}
