{
  "name": "@liveinstantly/dash-mpd-parser",
  "version": "0.5.0",
  "description": "A MPEG-DASH MPD manifest parser.",
  "keywords": [
    "MPEG-DASH",
    "DASH",
    "dash",
    "MPD",
    "mpd",
    "manifest",
    "parser",
    "player",
    "adaptive streaming",
    "audio streaming",
    "video streaming",
    "streaming"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/liveinstantly/dash-mpd-parser"
  },
  "author": "Shige Fukushima <github@liveinstantly.com>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/liveinstantly/dash-mpd-parser/issues"
  },
  "homepage": "https://github.com/liveinstantly/dash-mpd-parser#readme",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "types/index.d.ts",
  "scripts": {
    "clean": "rimraf ./dist/*",
    "lint": "eslint",
    "prettier": "prettier --write src/**/**.ts",
    "build": "npm-run-all clean build:cjs build:esm",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:esm": "tsc -p tsconfig.esm.json",
    "test": "jest",
    "gen_dash_consts": "cd tools && ./generate_constants",
    "package-test": "yarn link && npm-run-all package-test:cjs package-test:esm",
    "package-test:cjs": "cd package-tests/cjs && yarn test",
    "package-test:esm": "cd package-tests/esm && yarn test"
  },
  "dependencies": {
    "xmldom": "^0.6.0"
  },
  "devDependencies": {
    "@types/jest": "27.4",
    "@types/node": "16",
    "@types/node-fetch": "2",
    "@typescript-eslint/eslint-plugin": "^5.12.0",
    "@typescript-eslint/parser": "^5.12.0",
    "eslint": "^8.9.0",
    "jest": "27.4",
    "node-fetch": "2",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.5.1",
    "rimraf": "^3.0.2",
    "shx": "^0.3.4",
    "ts-jest": "^27.1.3",
    "typescript": "^4.5.5",
    "xml-js": "^1.6.11"
  }
}
