mirror of
https://github.com/videojs/m3u8-parser.git
synced 2026-06-06 08:22:33 +00:00
115 lines
2.9 KiB
JSON
115 lines
2.9 KiB
JSON
{
|
|
"name": "m3u8-parser",
|
|
"version": "4.3.0",
|
|
"description": "m3u8 parser",
|
|
"main": "dist/m3u8-parser.cjs.js",
|
|
"module": "dist/m3u8-parser.es.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:videojs/m3u8-parser.git"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "gkatsev",
|
|
"github": "https://github.com/gkatsev"
|
|
},
|
|
{
|
|
"name": "imbcmdth",
|
|
"github": "https://github.com/imbcmdth"
|
|
},
|
|
{
|
|
"name": "dmlap",
|
|
"github": "https://github.com/dmlap"
|
|
}
|
|
],
|
|
"scripts": {
|
|
"prebuild": "npm-run-all clean test-data",
|
|
"build": "npm-run-all -p build:*",
|
|
"build:js": "rollup -c scripts/rollup.config.js",
|
|
"clean": "shx rm -rf ./dist ./test/dist",
|
|
"postclean": "shx mkdir -p ./dist ./test/dist",
|
|
"docs": "npm-run-all docs:*",
|
|
"docs:api": "jsdoc src -g plugins/markdown -r -d docs/api",
|
|
"docs:toc": "doctoc README.md",
|
|
"lint": "vjsstandard",
|
|
"server": "karma start scripts/karma.conf.js --singleRun=false --auto-watch",
|
|
"start": "npm-run-all -p server watch",
|
|
"pretest": "npm-run-all lint build",
|
|
"test-data": "node scripts/m3u8.js",
|
|
"test": "karma start scripts/karma.conf.js",
|
|
"posttest": "shx cat test/dist/coverage/text.txt",
|
|
"update-changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s",
|
|
"preversion": "npm test",
|
|
"version": "is-prerelease || npm run update-changelog && git add CHANGELOG.md",
|
|
"watch": "npm-run-all -p watch:*",
|
|
"watch:js": "npm run build:js -- -w",
|
|
"prepublishOnly": "npm run build && vjsverify"
|
|
},
|
|
"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": {
|
|
"global": "^4.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"conventional-changelog-cli": "^2.0.1",
|
|
"conventional-changelog-videojs": "^3.0.0",
|
|
"doctoc": "^1.3.1",
|
|
"husky": "^1.0.0-rc.13",
|
|
"jsdoc": "https://github.com/BrandonOCasey/jsdoc#feat/plugin-from-cli",
|
|
"karma": "^3.0.0",
|
|
"lint-staged": "^7.2.2",
|
|
"not-prerelease": "^1.0.1",
|
|
"npm-merge-driver-install": "^1.0.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"pkg-ok": "^2.2.0",
|
|
"rollup": "^0.66.0",
|
|
"shx": "^0.3.2",
|
|
"sinon": "^6.1.5",
|
|
"videojs-generate-karma-config": "^4.0.2",
|
|
"videojs-generate-rollup-config": "~2.3.0",
|
|
"videojs-generator-verify": "~1.0.4",
|
|
"videojs-standard": "~7.1.0"
|
|
},
|
|
"generator-videojs-plugin": {
|
|
"version": "7.3.2"
|
|
},
|
|
"browserslist": [
|
|
"defaults",
|
|
"ie 11"
|
|
],
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"vjsstandard --fix",
|
|
"git add"
|
|
],
|
|
"README.md": [
|
|
"npm run docs:toc",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|