-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "dash-shaka-playback",
"version": "3.2.0",
"description": "clappr dash playback based on shaka player",
"main": "./dist/dash-shaka-playback.js",
"repository": {
"type": "git",
"url": "[email protected]:clappr/dash-shaka-playback.git"
},
"scripts": {
"build": "webpack",
"dist": "yarn lint && yarn build && yarn release",
"start": "webpack-dev-server",
"release": "webpack",
"lint": "eslint src/",
"prepublishOnly": "yarn dist"
},
"files": [
"/dist",
"/src"
],
"author": "Clappr team",
"license": "BSD-3-Clause",
"peerDependencies": {
"@clappr/core": "^0.4.17"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^7.18.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"shaka-player": "^3.0.7",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
}
}