mirror of
https://github.com/videojs/m3u8-parser.git
synced 2026-06-06 08:22:33 +00:00
142 lines
4.7 KiB
JSON
142 lines
4.7 KiB
JSON
{
|
|
"name": "m3u8-parser",
|
|
"version": "4.2.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 clean",
|
|
"build": "npm-run-all -p build:*",
|
|
"build:js": "npm-run-all build:js:rollup-modules build:js:rollup-umd build:js:bannerize build:js:uglify",
|
|
"build:js:babel": "babel src -d es5",
|
|
"build:js:bannerize": "bannerize dist/m3u8-parser.js --banner=scripts/banner.ejs",
|
|
"build:js:browserify": "browserify . -s m3u8-parser -o dist/m3u8-parser.js",
|
|
"build:js:rollup-modules": "rollup -c scripts/modules.rollup.config.js",
|
|
"build:js:rollup-umd": "rollup -c scripts/umd.rollup.config.js",
|
|
"build:js:uglify": "uglifyjs dist/m3u8-parser.js --comments --mangle --compress -o dist/m3u8-parser.min.js",
|
|
"prebuild:test": "node scripts/m3u8.js",
|
|
"build:test": "rollup -c scripts/test.rollup.config.js",
|
|
"change": "chg add",
|
|
"clean": "rimraf dist test/dist",
|
|
"postclean": "mkdirp dist test/dist",
|
|
"docs": "npm-run-all docs:*",
|
|
"docs:api": "jsdoc src -r -d docs/api",
|
|
"docs:toc": "doctoc README.md",
|
|
"lint": "vjsstandard",
|
|
"prestart": "npm run build",
|
|
"start": "npm-run-all -p start:server watch",
|
|
"start:serve": "babel-node scripts/server.js",
|
|
"start:server": "static -a 0.0.0.0 -p 9999 -H '{\"Cache-Control\": \"no-cache, must-revalidate\"}' .",
|
|
"pretest": "npm-run-all lint build",
|
|
"test": "karma start test/karma.conf.js",
|
|
"test:chrome": "npm run pretest && karma start test/karma.conf.js --browsers Chrome",
|
|
"test:firefox": "npm run pretest && karma start test/karma.conf.js --browsers Firefox",
|
|
"test:ie": "npm run pretest && karma start test/karma.conf.js --browsers IE",
|
|
"test:safari": "npm run pretest && karma start test/karma.conf.js --browsers Safari",
|
|
"preversion": "npm test",
|
|
"version": "node scripts/version.js",
|
|
"postversion": "babel-node scripts/postversion.js",
|
|
"watch": "npm-run-all -p watch:*",
|
|
"watch:js": "npm-run-all -p watch:js:babel watch:js:browserify",
|
|
"watch:js-modules": "rollup -c scripts/modules.rollup.config.js -w",
|
|
"watch:js-umd": "rollup -c scripts/umd.rollup.config.js -w",
|
|
"watch:js:babel": "npm run build:js:babel -- --watch",
|
|
"watch:js:browserify": "watchify . -v -g browserify-shim -o dist/m3u8-parser.js",
|
|
"watch:test": "rollup -c scripts/test.rollup.config.js -w",
|
|
"prepublish": "npm run build"
|
|
},
|
|
"keywords": [],
|
|
"author": "Brightcove, Inc",
|
|
"license": "Apache-2.0",
|
|
"browserify-shim": {
|
|
"qunit": "global:QUnit",
|
|
"sinon": "global:sinon"
|
|
},
|
|
"vjsstandard": {
|
|
"ignore": [
|
|
"dist",
|
|
"docs",
|
|
"test/dist",
|
|
"test/karma.conf.js",
|
|
"test/test-expected.js",
|
|
"test/manifests.js",
|
|
"test/fixtures/m3u8/**/*.js"
|
|
]
|
|
},
|
|
"files": [
|
|
"CONTRIBUTING.md",
|
|
"dist/",
|
|
"docs/",
|
|
"index.html",
|
|
"scripts/",
|
|
"src/",
|
|
"test/"
|
|
],
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.11.4",
|
|
"babel-plugin-external-helpers": "^6.22.0",
|
|
"babel-plugin-transform-object-assign": "^6.8.0",
|
|
"babel-preset-es2015": "^6.14.0",
|
|
"babel-preset-es3": "^1.0.1",
|
|
"babelify": "^7.3.0",
|
|
"bannerize": "^1.0.2",
|
|
"bluebird": "^3.2.2",
|
|
"browserify": "^12.0.2",
|
|
"browserify-shim": "^3.8.12",
|
|
"budo": "^8.0.4",
|
|
"chg": "^0.3.2",
|
|
"conventional-changelog-cli": "^1.3.1",
|
|
"conventional-changelog-videojs": "^3.0.0",
|
|
"doctoc": "^0.15.0",
|
|
"glob": "^6.0.3",
|
|
"global": "^4.3.0",
|
|
"jsdoc": "^3.4.0",
|
|
"karma": "^1.7.0",
|
|
"karma-chrome-launcher": "^2.1.1",
|
|
"karma-detect-browsers": "^2.2.5",
|
|
"karma-firefox-launcher": "^1.0.1",
|
|
"karma-ie-launcher": "^1.0.0",
|
|
"karma-qunit": "^1.2.1",
|
|
"karma-safari-launcher": "^1.0.0",
|
|
"minimist": "^1.2.0",
|
|
"mkdirp": "^0.5.1",
|
|
"node-static": "^0.7.9",
|
|
"npm-run-all": "^4.0.2",
|
|
"qunitjs": "^2.3.2",
|
|
"rimraf": "^2.6.1",
|
|
"rollup": "^0.51.8",
|
|
"rollup-plugin-babel": "^2.7.1",
|
|
"rollup-plugin-commonjs": "^8.0.2",
|
|
"rollup-plugin-json": "^2.1.1",
|
|
"rollup-plugin-multi-entry": "^2.0.2",
|
|
"rollup-plugin-node-resolve": "^3.0.0",
|
|
"rollup-watch": "^3.2.2",
|
|
"semver": "^5.3.0",
|
|
"sinon": "^2.2.0",
|
|
"uglify-js": "^3.0.7",
|
|
"videojs-standard": "^6.0.0",
|
|
"watchify": "^3.7.0"
|
|
},
|
|
"generator-videojs-plugin": {
|
|
"version": "5.0.0"
|
|
}
|
|
}
|