{
  "name": "r-server",
  "version": "2.10.2",
  "description": "A lightweight, extensible web-server with inbuilt routing-engine, static file server, file upload handler, request body parser, middleware support and lots more",
  "main": "lib/main",
  "typings": "lib/typings/main",
  "scripts": {
    "commit": "git-cz",
    "test": "BABEL_ENV=test jest --runInBand",
    "watch-test": "BABEL_ENV=test jest --runInBand --watch",
    "build": "rimraf lib && tsc && BABEL_ENV=build rollup --config",
    "lint": "eslint src/**/*.ts --fix",
    "start": "npm run build && node app.js",
    "postinstall": "bash ./scripts/gen-ssl-cert.sh && node ./scripts/create-unreadable.js",
    "report-coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
    "semantic-release": "semantic-release"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/harrison-ifeanyichukwu/r-server.git"
  },
  "keywords": [
    "web-server",
    "router",
    "routing-engine",
    "static-file-server",
    "file-upload-handler",
    "range-request-server",
    "mountable-routers",
    "api",
    "body-parser"
  ],
  "author": "Harrison Ifeanyichukwu <Harrisonifeanyichukwu@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/harrison-ifeanyichukwu/r-server/issues"
  },
  "homepage": "https://github.com/harrison-ifeanyichukwu/r-server#readme",
  "devDependencies": {
    "@babel/core": "7.4.0",
    "@babel/plugin-proposal-class-properties": "^7.4.0",
    "@babel/plugin-proposal-object-rest-spread": "^7.4.0",
    "@babel/preset-env": "7.4.0",
    "@babel/preset-typescript": "7.3.3",
    "@types/jest": "24.0.11",
    "@typescript-eslint/eslint-plugin": "2.0.0",
    "@typescript-eslint/parser": "1.6.0",
    "babel-jest": "24.3.1",
    "commitizen": "4.0.3",
    "coveralls": "3.0.3",
    "cz-conventional-changelog": "2.1.0",
    "jest": "24.3.1",
    "js-beautify": "1.7.5",
    "request": "2.88.0",
    "rimraf": "2.6.3",
    "rollup": "0.66.6",
    "rollup-all": "1.6.16",
    "rollup-plugin-babel": "4.3.2",
    "rollup-plugin-commonjs": "9.3.4",
    "rollup-plugin-node-resolve": "3.4.0",
    "rollup-plugin-uglify": "6.0.2",
    "semantic-release": "^15.13.24",
    "semantic-release-cli": "5.2.0",
    "source-map-support": "0.5.12",
    "typescript": "3.3.3333"
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "dependencies": {
    "@babel/plugin-transform-runtime": "7.4.3",
    "@babel/runtime": "7.4.3",
    "@forensic-js/node-utils": "1.0.0",
    "@forensic-js/regex": "1.0.1",
    "@forensic-js/utils": "2.0.0",
    "mime-types": "2.1.24",
    "uuid": "3.3.3"
  }
}
