{
  "name": "@tigerbrokers/bridge",
  "version": "2.0.0",
  "description": "",
  "main": "./dist/tiger-bridge.js",
  "types": "typings.d.ts",
  "scripts": {
    "dev": "npm test -- --watch",
    "test": "nyc ts-mocha ./**/test.ts",
    "docs": "./make-docs.sh",
    "lint": "tslint --fix **/*.ts",
    "clean": "rm -rf ./dist",
    "build": "npm run lint && webpack --mode production",
    "upload": "tiger-cdn ./dist/ tiger-bridge",
    "deploy": "npm run clean && npm run build && npm run test && npm run docs && npm run upload"
  },
  "directories": {
    "doc": "./dist/docs/",
    "test": "./test"
  },
  "keywords": [],
  "author": "ijse <i@ijser.cn>",
  "license": "ISC",
  "dependencies": {
    "@types/debug": "^0.0.30",
    "debug": "^3.1.0",
    "tslint": "^5.11.0"
  },
  "devDependencies": {
    "@tigerbrokers/cdn": "^1.2.0",
    "@types/chai": "^4.1.4",
    "@types/mocha": "^5.2.5",
    "@types/sinon": "^5.0.1",
    "@types/source-map": "0.5.2",
    "@types/webpack": "^4.4.9",
    "@types/webpack-env": "^1.13.6",
    "chai": "^4.1.2",
    "jsdom-global": "^3.0.2",
    "mocha": "^5.2.0",
    "mocha-jsdom": "^2.0.0",
    "mochawesome": "^3.0.3",
    "nyc": "^12.0.2",
    "sinon": "^6.1.4",
    "source-map": "^0.7.3",
    "ts-loader": "^4.4.2",
    "ts-mocha": "^2.0.0",
    "typedoc": "^0.11.1",
    "typescript": "^3.0.1",
    "webpack": "^4.16.5",
    "webpack-cli": "^3.1.0"
  },
  "nyc": {
    "check-coverage": true,
    "per-file": true,
    "instrument": true,
    "sourceMap": true,
    "extension": [
      ".ts",
      ".tsx"
    ],
    "include": [
      "src/**/*.ts"
    ],
    "exclude": [
      "**/*.d.ts",
      "src/**/*.test.ts",
      "src/**/test.ts",
      "dist",
      "test"
    ],
    "reporter": [
      "html",
      "text"
    ],
    "cache": true,
    "report-dir": "dist/coverage",
    "all": true
  }
}
