-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.04 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
{
"name": "@epiclabs/epic-video-player",
"version": "0.1.1",
"description": "Video player wrapper to support different video sources with an unified interface",
"main": "./index.js",
"types": "./index.d.ts",
"author": {
"name": "Adrian Caballero",
"email": "adripanicodev@gmail.com",
"url": "https://github.com/adripanico"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epiclabs-io/epic-video-player.git"
},
"license": "MIT",
"homepage": "https://adripanico.github.io/epic-video-player",
"bugs": {
"url": "https://github.com/epiclabs-io/epic-video-player/issues"
},
"keywords": [
"video",
"player",
"video player",
"dash",
"dashjs",
"hls",
"hls.js",
"mp4",
"ogg"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"_clean": "rimraf dist",
"_transpile": "tsc",
"_bundle": "webpack --config webpack.config.prod.js",
"_npm_ready": "cpy CHANGELOG.md LICENSE package.json README.md ./dist/",
"build": "run-s _clean _bundle _transpile _npm_ready",
"_lint": "eslint src --ext .js,.ts",
"_utest": "jest --coverage --env=jsdom",
"test": "run-s _lint _utest",
"start": "webpack-dev-server --config webpack.config.dev.js --host 0.0.0.0 --port 8085 --open --mode development",
"build-dev": "webpack --config webpack.config.dev.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist/bundle"
},
"dependencies": {
"dashjs": "^4.7.1",
"hls.js": "^1.4.10"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"cpy-cli": "^5.0.0",
"eslint": "^8.45.0",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.6.1",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"tslib": "^2.6.1",
"typescript": "^5.1.6",
"url-loader": "^4.1.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}