{
  "name": "onvif-rx",
  "version": "9.0.2",
  "description": "Interact with ONVIF cameras and devices using RXJS",
  "author": "Patrick Michalina <patrickmichalina@mac.com>",
  "main": "onvif-rx-cjs.js",
  "module": "onvif-rx-esm.js",
  "browser": "onvif-rx-umd.js",
  "types": "node.d.ts",
  "license": "MIT",
  "keywords": [
    "onvif",
    "camera",
    "video",
    "rtsp",
    "rtp",
    "rxjs",
    "node",
    "typescript",
    "udp",
    "electron",
    "universal",
    "ptz"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/patrickmichalina/onvif-rx"
  },
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "ts-node-dev src/index.ts",
    "lint": "tsc && tslint -p tsconfig.json",
    "build": "npm run rollup && npm run minify",
    "minify": "terser dist/onvif-rx-umd.js -o dist/onvif-rx-umd.min.js --source-map -c -m",
    "rollup": "rollup -c",
    "watch": "rollup -cw",
    "docs": "typedoc src --theme markdown --out docs --readme none",
    "gen.api": "rm -rf src/api && ts-node scripts/api/ast.ts && npm run docs"
  },
  "dependencies": {
    "@akanass/rx-http-request": "^3.3.0",
    "rxjs": "^6.5.4",
    "typescript-monads": "^7.1.0",
    "xml-js": "^1.6.11",
    "xmldom": "^0.6.0"
  },
  "devDependencies": {
    "@types/fs-extra": "^9.0.13",
    "@types/node": "^13.1.4",
    "@types/node-fetch": "^2.5.4",
    "@types/xml-js": "^1.0.0",
    "@types/xmldom": "^0.1.29",
    "fs-extra": "^10.0.0",
    "node-fetch": "^2.6.0",
    "rollup": "^1.28.0",
    "rollup-plugin-typescript2": "^0.25.3",
    "semantic-release": "^18.0.0",
    "terser": "^4.5.1",
    "ts-node-dev": "^1.0.0-pre.44",
    "ts-simple-ast": "^21.0.4",
    "tslib": "^1.10.0",
    "tslint": "^5.20.1",
    "tslint-immutable": "^6.0.1",
    "typedoc": "^0.17.0",
    "typedoc-plugin-markdown": "^2.2.14",
    "typescript": "^3.8.3"
  },
  "release": {
    "pkgRoot": "dist",
    "branch": "master",
    "plugins": [
      "@semantic-release/npm",
      "@semantic-release/github",
      [
        "@semantic-release/commit-analyzer",
        {
          "preset": "angular",
          "releaseRules": [
            {
              "type": "docs",
              "scope": "README",
              "release": "patch"
            },
            {
              "type": "refactor",
              "release": "patch"
            }
          ],
          "parserOpts": {
            "noteKeywords": [
              "BREAKING CHANGE",
              "BREAKING CHANGES",
              "BREAKING"
            ]
          }
        }
      ],
      [
        "@semantic-release/release-notes-generator",
        {
          "preset": "angular",
          "parserOpts": {
            "noteKeywords": [
              "BREAKING CHANGE",
              "BREAKING CHANGES",
              "BREAKING"
            ]
          }
        }
      ]
    ]
  }
}
