-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.94 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@clappr/flashls-playback",
"version": "0.4.0",
"description": "Clappr FlasHLS playback",
"main": "./dist/flashls-playback.js",
"module": "./src/flashls.js",
"scripts": {
"bundle-check": "ANALYZE_BUNDLE=true ./node_modules/.bin/webpack -p",
"release": "MINIMIZE=true ./node_modules/.bin/webpack --progress",
"build": "./node_modules/.bin/webpack --progress",
"build:debug": "CLAPPR_INLINE_DEBUG=true ./node_modules/.bin/webpack --progress",
"watch": "./node_modules/.bin/webpack --progress --watch",
"test": "./node_modules/.bin/karma start --single-run",
"test:watch": "./node_modules/.bin/karma start --no-single-run --watch",
"lint": "./node_modules/.bin/eslint *.js src/ test/",
"lint:fix": "npm run lint -- --fix",
"start": "./node_modules/.bin/webpack-dev-server --host 0.0.0.0 --content-base public/ --output-public-path latest/ --hot"
},
"files": [
"/dist",
"/src"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "[email protected]:clappr/flashls-playback.git"
},
"author": "Globo.com",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/clappr/flashls-playback/issues"
},
"homepage": "https://github.com/clappr/flashls-playback",
"peerDependencies": {
"@clappr/core": "^0.4.1"
},
"dependencies": {
"@clappr/flash-playback": "^0.3.8"
},
"devDependencies": {
"@clappr/core": "^0.4.1",
"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-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"css-loader": "^0.28.10",
"cz-conventional-changelog": "^2.1.0",
"directory-named-webpack-plugin": "^4.0.1",
"eslint": "^4.18.2",
"file-loader": "^1.1.11",
"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.9.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",
"uglifyjs-webpack-plugin": "^2.1.2",
"url-loader": "^0.6.2",
"webpack": "^4.31.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1",
"yargs": "^11.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}