{
  "name": "webscrape",
  "version": "4.0.0",
  "description": "Scrape web pages. Uses and returns promises",
  "main": "dist/index.js",
  "scripts": {
    "compile": "babel -d dist/ src/",
    "prepublish": "npm test && npm run compile",
    "lint": "eslint src/* && flow",
    "test": "npm run lint && BABEL_ENV=test nyc mocha test/index.js",
    "coverage": "nyc report --reporter=text-lcov"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/masotime/webscrape.git"
  },
  "keywords": [
    "scraping",
    "web"
  ],
  "author": "Benjamin Goh <masotime@gmail.com>",
  "license": "ISC",
  "dependencies": {
    "@babel/polyfill": "^7.0.0",
    "cheerio": "^1.0.0-rc.10"
  },
  "devDependencies": {
    "@babel/cli": "^7.0.0",
    "@babel/core": "^7.0.0",
    "@babel/eslint-parser": "^7.16.3",
    "@babel/plugin-proposal-class-properties": "^7.0.0",
    "@babel/plugin-proposal-decorators": "^7.0.0",
    "@babel/plugin-proposal-do-expressions": "^7.0.0",
    "@babel/plugin-proposal-export-default-from": "^7.0.0",
    "@babel/plugin-proposal-export-namespace-from": "^7.0.0",
    "@babel/plugin-proposal-function-bind": "^7.0.0",
    "@babel/plugin-proposal-function-sent": "^7.0.0",
    "@babel/plugin-proposal-json-strings": "^7.0.0",
    "@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
    "@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
    "@babel/plugin-proposal-numeric-separator": "^7.0.0",
    "@babel/plugin-proposal-optional-chaining": "^7.0.0",
    "@babel/plugin-proposal-pipeline-operator": "^7.0.0",
    "@babel/plugin-proposal-throw-expressions": "^7.0.0",
    "@babel/plugin-syntax-dynamic-import": "^7.0.0",
    "@babel/plugin-syntax-import-meta": "^7.0.0",
    "@babel/plugin-transform-runtime": "^7.0.0",
    "@babel/preset-env": "^7.0.0",
    "@babel/preset-flow": "^7.16.0",
    "@babel/register": "^7.4.4",
    "babel-plugin-istanbul": "^5.1.0",
    "bluebird": "^3.7.2",
    "body-parser": "^1.18.3",
    "eslint": "^8.2.0",
    "eslint-plugin-flowtype": "^8.0.3",
    "express": "^4.16.4",
    "flow-bin": "^0.164.0",
    "mkdirp": "^0.5.1",
    "mocha": "^11.3.0",
    "nyc": "^15.1.0"
  }
}
