mirror of
https://github.com/iv-org/videojs-quality-selector.git
synced 2024-10-01 06:35:49 -04:00
82bce6bf3d
- All the dev dependencies were updates in package.json. - prepublish was replaced by prepare to fix "warn prepublish-on-install As of npm@5, `prepublish` scripts are deprecated" & "warn prepublish-on-install Use `prepare` for build steps and `prepublishOnly` for upload-only." - node-sass was added in package.json and a require('node-sass') was added to Gruntfile.js since the new version of grunt-sass requires it (see: https://github.com/sindresorhus/grunt-sass/releases/tag/v3.0.0)
58 lines
1.6 KiB
JSON
58 lines
1.6 KiB
JSON
{
|
|
"name": "@silvermine/videojs-quality-selector",
|
|
"version": "1.2.0",
|
|
"description": "video.js plugin for selecting a video quality or resolution",
|
|
"main": "src/js/index.js",
|
|
"scripts": {
|
|
"prepare": "grunt build",
|
|
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec 'tests/**/*.test.js'"
|
|
},
|
|
"author": "Jeremy Thomerson",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/silvermine/videojs-quality-selector.git"
|
|
},
|
|
"keywords": [
|
|
"video.js",
|
|
"videojs",
|
|
"plugin",
|
|
"resolution",
|
|
"quality"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/silvermine/videojs-quality-selector/issues"
|
|
},
|
|
"homepage": "https://github.com/silvermine/videojs-quality-selector#readme",
|
|
"devDependencies": {
|
|
"@silvermine/eslint-config": "2.2.1",
|
|
"@silvermine/sass-lint-config": "1.1.0",
|
|
"autoprefixer": "9.5.1",
|
|
"coveralls": "3.0.3",
|
|
"eslint": "5.16.0",
|
|
"expect.js": "0.3.1",
|
|
"grunt": "1.0.4",
|
|
"grunt-browserify": "5.3.0",
|
|
"grunt-contrib-uglify": "4.0.1",
|
|
"grunt-contrib-watch": "1.1.0",
|
|
"grunt-eslint": "21.0.0",
|
|
"grunt-postcss": "0.9.0",
|
|
"grunt-sass": "3.0.2",
|
|
"node-sass": "4.12.0",
|
|
"grunt-sass-lint": "0.2.4",
|
|
"istanbul": "0.4.5",
|
|
"mocha": "6.1.4",
|
|
"mocha-lcov-reporter": "1.3.0",
|
|
"rewire": "4.0.1",
|
|
"silvermine-serverless-utils": "git+https://github.com/silvermine/serverless-utils.git#910f1149af824fc8d0fa840878079c7d3df0f414",
|
|
"sinon": "7.3.2"
|
|
},
|
|
"peerDependencies": {
|
|
"video.js": ">=6.0.0"
|
|
},
|
|
"dependencies": {
|
|
"class.extend": "0.9.2",
|
|
"underscore": "1.9.1"
|
|
}
|
|
}
|