forked from Eyevinn/html-player
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.31 KB
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
{
"name": "eyevinn-html-player",
"version": "0.3.1",
"description": "Eyevinn HTML5 Player with support for HLS, MPEG-DASH and MSS",
"main": "index.js",
"scripts": {
"build-js": "parcel build index.js --no-source-maps --out-dir build --out-file eyevinn-html-player.js",
"build-css": "parcel build styles/main.scss --no-source-maps --out-dir build --out-file eyevinn-html-player.css",
"build": "npm run build-js && npm run build-css",
"start": "parcel ./demo/index.html",
"postversion": "git push && git push --tags"
},
"author": "Jonas Birmé <jonas.birme@eyevinn.se>",
"contributors": [
"Erik Hoffman <erik.hoffman@eyevinn.se>"
],
"license": "Apache-2.0",
"dependencies": {
"dashjs": "^3.0.0",
"hls.js": "^0.12.4",
"shaka-player": "^2.5.6"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@types/jest": "^24.0.23",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"sass": "^1.23.7"
}
}