{
  "name": "rocketchat-sdk",
  "version": "0.0.1",
  "description": "Node.js SDK for Rocket.Chat. Application interface for server methods and message streams.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": "https://github.com/RocketChat/Rocket.Chat.js.SDK.git",
  "author": "Tim Kinnane <tim.kinnane@rocket.chat>",
  "license": "MIT",
  "private": false,
  "keywords": [
    "adapter",
    "rocketchat",
    "rocket",
    "chat",
    "messaging",
    "CUI",
    "typescript"
  ],
  "files": [
    "dist"
  ],
  "engines": {
    "node": "> 8.0.0",
    "npm": "> 5.0.0"
  },
  "scripts": {
    "pretest": "tslint -p .",
    "test": "nyc mocha --opts ./mocha.opts './src/lib/**/*.spec.ts'",
    "test:hook": "mocha --opts ./mocha.opts './**/*.spec.ts'",
    "test:debug": "mocha  --opts ./mocha.opts --inspect --debug-brk 'src/**/*.spec.ts'",
    "test:package": "preview && mocha --opts ./mocha.opts 'src/index.spec.ts'",
    "docs": "rimraf ./docs/*; typedoc --options ./typedoc.json ./src/lib",
    "prebuild": "npm run test",
    "build": "rimraf ./dist/* && tsc && npm run test:package && npm run docs"
  },
  "husky": {
    "hooks": {
      "pre-push": "npm run test:hook"
    }
  },
  "devDependencies": {
    "@types/chai": "^4.1.2",
    "@types/mocha": "^2.2.48",
    "chai": "^4.1.2",
    "commitizen": "^2.9.6",
    "cz-conventional-changelog": "^2.1.0",
    "dotenv": "^5.0.1",
    "husky": "^0.14.3",
    "mocha": "^5.0.1",
    "node-rest-client": "^3.1.0",
    "nyc": "^11.4.1",
    "package-preview": "^1.0.5",
    "rimraf": "^2.6.2",
    "sinon": "^4.4.2",
    "source-map-support": "^0.5.3",
    "ts-node": "^5.0.1",
    "tslint": "^5.9.1",
    "tslint-config-standard": "^7.0.0",
    "typedoc": "0.8.0",
    "typedoc-plugin-external-module-name": "^1.1.1",
    "typescript": "^2.7.2"
  },
  "dependencies": {
    "@types/lru-cache": "^4.1.0",
    "@types/node": "^9.4.6",
    "asteroid": "rocketchat/asteroid",
    "lru-cache": "^4.1.1"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}
