forked from clappr/clappr-level-selector-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.83 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "clappr-level-selector",
"description": "A simple plugin for Clappr that adds support to manually select level on multi-bitrate streams.",
"version": "0.2.0",
"license": "MIT",
"repository": "clappr/clappr-level-selector-plugin",
"main": "dist/level-selector.js",
"scripts": {
"release": "node_modules/.bin/webpack --p --output-filename clappr-level-selector.min.js",
"build": "node_modules/.bin/webpack --progress",
"watch": "node_modules/.bin/webpack --progress --watch",
"test": "npm run lint && echo 'No tests configured - aborting.'",
"lint": "eslint *.js src/",
"lint:fix": "npm run lint -- --fix",
"start": "node_modules/.bin/webpack-dev-server --content-base public/ --output-public-path /latest --hot",
"lock": "rm -rf npm-shrinkwrap.json node_modules && npm install --silent && npm shrinkwrap"
},
"author": {
"name": "Lucas Mundim",
"email": "[email protected]",
"url": "https://github.com/lucasmundim"
},
"contributors": [
{
"name": "Flávio Ribeiro",
"email": "[email protected]"
},
{
"name": "Bruno Torres",
"email": "[email protected]"
}
],
"keywords": [
"clappr",
"plugin"
],
"peerDependencies": {
"clappr": "0.x"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"clappr": "^0.2.92",
"css-loader": "^0.28.10",
"eslint": "^4.18.2",
"html-loader": "^0.5.5",
"node-sass": "^4.14.0",
"postcss-loader": "^2.1.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.12.4",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1",
"yargs": "^11.0.0"
}
}