forked from clappr/clappr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.55 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "clappr",
"version": "0.2.96",
"description": "An extensible media player for the web",
"main": "./dist/clappr.js",
"scripts": {
"bundle-check": "webpack -p --config './webpack.config.bundle-analyzer.js'",
"release": "MINIMIZE=true webpack --progress",
"release:plainhtml5": "MINIMIZE=true CLAPPR_PLAIN_HTML5_ONLY=true webpack --progress",
"build": "webpack --progress",
"build:debug": "CLAPPR_INLINE_DEBUG=true webpack --progress",
"build:plainhtml5": "CLAPPR_PLAIN_HTML5_ONLY=true webpack --progress",
"watch": "webpack --progress --watch",
"test": "karma start --single-run",
"test:watch": "karma start --no-single-run --watch",
"lint": "eslint *.js src/ test/",
"lint:fix": "npm run lint -- --fix",
"start": "webpack-dev-server --host 0.0.0.0 --content-base public/ --output-public-path latest/ --hot",
"lock": "rm -rf npm-shrinkwrap.json node_modules && npm install --silent && npm shrinkwrap"
},
"repository": {
"type": "git",
"url": "[email protected]:clappr/clappr.git"
},
"author": "Globo.com",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/clappr/clappr/issues"
},
"homepage": "https://github.com/clappr/clappr",
"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",
"chai": "^4.1.2",
"clappr-zepto": "0.0.7",
"coveralls": "^3.0.0",
"css-loader": "^0.28.10",
"directory-named-webpack-plugin": "^2.3.0",
"eslint": "^4.18.2",
"file-loader": "^1.1.11",
"gulp": "^3.9.1",
"hls.js": "^0.9.1",
"html-loader": "^0.5.5",
"istanbul": "^0.4.2",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^2.0.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^2.0.13",
"lolex": "^2.3.2",
"mocha": "^5.0.1",
"node-sass": "^4.7.2",
"postcss-loader": "^2.1.1",
"s3": "^4.4.0",
"sass-loader": "^6.0.6",
"sinon": "^4.4.2",
"sinon-chai": "^2.14.0",
"style-loader": "^0.20.2",
"svg-inline-loader": "^0.8.0",
"sync-pkg": "^0.7.2",
"uglify-js": "^3.3.12",
"url-loader": "^0.6.2",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-dev-server": "^2.11.1",
"yargs": "^11.0.0"
}
}