-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.75 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
42
43
44
45
46
47
{
"name": "@eyevinn/html-player",
"version": "0.6.1",
"description": "Eyevinn HTML5 Player with support for HLS, MPEG-DASH and MSS",
"main": "./pkg/eyevinn-html-player",
"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 --public-url ./ --out-dir build --out-file eyevinn-html-player.css",
"build": "npm run build-js && npm run build-css",
"build-npm-js": "parcel build main.js --no-source-maps --out-dir pkg --out-file eyevinn-html-player.js",
"build-npm-css": "parcel build styles/main.scss --no-source-maps --public-url ./ --out-dir pkg --out-file style.css",
"build-npm": "npm run build-npm-js && npm run build-npm-css",
"start": "parcel ./demo/index.html",
"test": "jest --passWithNoTests",
"postversion": "git push && git push --tags"
},
"author": "Jonas Birmé <jonas.birme@eyevinn.se>",
"contributors": [
"Erik Hoffman <erik.hoffman@eyevinn.se>",
"Benjamin Wallberg <benjamin.wallberg@eyevinn.se>"
],
"license": "Apache-2.0",
"dependencies": {
"dashjs": "^3.1.2",
"hls.js": "^0.14.6",
"shaka-player": "^3.0.1"
},
"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": "^25.5.1",
"babel-loader": "^8.1.0",
"dotenv-vars": "^2.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^25.5.2",
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"sass": "^1.26.5"
}
}