{
  "name": "rtsp-streaming-server",
  "version": "2.1.0",
  "description": "Lightweight RTSP/RTP streaming media server written in Javascript",
  "main": "build/index.js",
  "scripts": {
    "prepare": "npm run build",
    "build": "npm run type-check && npm run build:js",
    "build:js": "babel src --out-dir build --extensions '.ts' --source-maps inline",
    "coverage": "jest --coverage --env=node",
    "lint": "tslint --project tsconfig.json",
    "start": "nodemon",
    "test": "echo \"Error: no test specified\" && exit 1",
    "type-check": "tsc --emitDeclarationOnly"
  },
  "files": [
    "build"
  ],
  "keywords": [],
  "author": "Chris Wiggins <chris@wiggins.nz>",
  "license": "GPL-3.0",
  "dependencies": {
    "basic-auth": "^2.0.1",
    "debug": "^4.1.1",
    "rtsp-server": "^1.2.2",
    "uuid": "^3.3.3",
    "winston": "^2.4.4"
  },
  "devDependencies": {
    "@babel/cli": "^7.5.5",
    "@babel/core": "^7.5.5",
    "@babel/node": "^7.5.5",
    "@babel/preset-env": "^7.5.5",
    "@babel/preset-typescript": "^7.3.3",
    "@types/basic-auth": "^1.1.2",
    "@types/debug": "^4.1.5",
    "@types/node": "^11.13.19",
    "@types/uuid": "^3.4.5",
    "lint-staged": "^8.2.1",
    "nodemon": "^1.19.1",
    "ts-node": "^8.3.0",
    "tslint": "^5.19.0",
    "tslint-config-standard": "^8.0.1",
    "typescript": "^3.5.3"
  },
  "engines": {
    "node": ">=10.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/chriswiggins/rtsp-streaming-server.git"
  },
  "types": "build/index.d.ts"
}
