{
  "name": "simple-requests",
  "version": "1.0.0-beta",
  "description": "A library for performing simple http(s) requests.",
  "main": "lib/index.js",
  "directories": {
    "lib": "lib"
  },
  "scripts": {
    "build": "run-s lint test clean compile",
    "clean": "rm -rf lib",
    "compile": "tsc",
    "lint": "eslint -c .eslintrc.js --ext .ts src/",
    "push": "npm run build && npm publish",
    "test": "ts-mocha test/*.test.ts"
  },
  "keywords": [
    "HTTP",
    "HTTPS",
    "REQUEST",
    "SIMPLE",
    "GET",
    "PUT",
    "POST",
    "DELETE"
  ],
  "author": "Jason Favrod <mail@jasonfavrod.com>",
  "repository": {
    "type": "git",
    "url": "git@github.com:jfavrod/simple-requests.git"
  },
  "license": "ISC",
  "devDependencies": {
    "@types/mocha": "^7.0.2",
    "@types/node": "^14.14.20",
    "@typescript-eslint/eslint-plugin": "^4.25.0",
    "@typescript-eslint/parser": "^4.25.0",
    "eslint": "^7.27.0",
    "eslint-plugin-jsdoc": "^35.0.0",
    "eslint-plugin-prefer-arrow": "^1.2.3",
    "mocha": "^7.2.0",
    "npm-run-all": "^4.1.5",
    "ts-mocha": "^7.0.0",
    "tslint": "^6.1.3",
    "typescript": "^3.9.7"
  },
  "dependencies": {
    "form-data": "^3.0.0"
  }
}
