{ "name": "mpd-parser", "version": "0.10.0", "description": "mpd parser", "main": "dist/mpd-parser.cjs.js", "module": "dist/mpd-parser.es.js", "repository": { "type": "git", "url": "git@github.com:videojs/mpd-parser.git" }, "scripts": { "prenetlify": "npm run build", "netlify": "node scripts/netlify.js", "build-test": "cross-env-shell TEST_BUNDLE_ONLY=1 'npm run build'", "build-prod": "cross-env-shell NO_TEST_BUNDLE=1 'npm run build'", "build": "npm-run-all -s clean -p build:*", "build:js": "rollup -c scripts/rollup.config.js", "clean": "shx rm -rf ./dist ./test/dist && shx mkdir -p ./dist ./test/dist", "lint": "vjsstandard", "prepublishOnly": "npm-run-all build-prod && vjsverify --verbose", "start": "npm-run-all -p server watch", "server": "karma start scripts/karma.conf.js --singleRun=false --auto-watch", "test": "npm-run-all lint build-test && npm-run-all test:*", "test:browser": "karma start scripts/karma.conf.js", "test:node": "qunit test/dist/bundle-node.js", "posttest": "shx cat test/dist/coverage/text.txt", "preversion": "npm test", "version": "is-prerelease || npm run update-changelog && git add CHANGELOG.md", "update-changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s", "watch": "npm-run-all -p watch:*", "watch:js": "npm run build:js -- -w" }, "keywords": [ "videojs", "videojs-plugin" ], "author": "Brightcove, Inc", "license": "Apache-2.0", "vjsstandard": { "ignore": [ "dist", "docs", "test/dist" ] }, "files": [ "CONTRIBUTING.md", "dist/", "docs/", "index.html", "scripts/", "src/", "test/" ], "dependencies": { "@babel/runtime": "^7.5.5", "global": "^4.3.2", "@videojs/vhs-utils": "^1.1.0", "xmldom": "^0.1.27" }, "devDependencies": { "@videojs/generator-helpers": "~1.2.0", "jsdom": "^15.1.1", "karma": "^4.0.0", "rollup": "^1.19.4", "rollup-plugin-string": "^2.0.2", "sinon": "^7.2.2", "videojs-generate-karma-config": "~5.3.1", "videojs-generate-rollup-config": "~5.0.1", "videojs-generator-verify": "~2.0.0", "videojs-standard": "^8.0.3" }, "generator-videojs-plugin": { "version": "7.7.3" }, "browserslist": [ "defaults", "ie 11" ], "lint-staged": { "*.js": [ "vjsstandard --fix", "git add" ], "README.md": [ "doctoc --notitle", "git add" ] }, "husky": { "hooks": { "pre-commit": "lint-staged" } } }