forked from Dash-Industry-Forum/dash.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "dashjs",
"version": "5.0.0",
"description": "A reference client implementation for the playback of MPEG DASH via Javascript and compliant browsers.",
"author": "Dash Industry Forum",
"license": "BSD-3-Clause",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/esm/dash.all.debug.esm.js",
"default": "./dist/esm/dash.all.debug.esm.js",
"browser": "./dist/dash.all.min.js",
"script": "./dist/dash.all.min.js"
}
},
"type": "module",
"scripts": {
"dev": "tsc && webpack --config build/webpack.dev.cjs --mode development --watch --progress",
"start": "webpack serve --config build/webpack.dev.cjs",
"lint": "eslint \"src/**/*.js\" \"test/unit/mocks/*.js\" \"test/unit/test/**/*.js\"",
"build": "tsc && npm run test && npm run lint && npm run webpack-build",
"doc": "jsdoc -c build/jsdoc/jsdoc_conf.json -d docs/jsdoc",
"test": "karma start test/unit/config/karma.unit.conf.cjs",
"test-functional": "karma start test/functional/config/karma.functional.conf.cjs --configfile=local --streamsfile=smoke",
"prepare": "node githook.cjs",
"webpack-build": "rimraf dist && webpack --config build/webpack.prod.cjs"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"babel-loader": "^9.1.3",
"chai": "^4.4.1",
"chai-spies": "^1.1.0",
"clean-jsdoc-theme": "^4.2.17",
"eslint": "^7.23.0",
"eslint-webpack-plugin": "^2.7.0",
"ink-docstrap": "^1.3.2",
"intern": "^4.9.1",
"jsdoc": "^3.6.7",
"karma": "^6.4.1",
"karma-browserstack-launcher": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.3",
"karma-htmlfile-reporter": "^0.3.8",
"karma-junit-reporter": "^2.0.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-safarinative-launcher": "^1.1.0",
"karma-webdriver-launcher": "^1.0.8",
"karma-webpack": "^5.0.0",
"mocha": "^10.1.0",
"rimraf": "^5.0.5",
"sinon": "^17.0.1",
"stream-browserify": "^3.0.0",
"string-replace-loader": "^3.1.0",
"timers-browserify": "^2.0.12",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.10.0",
"yargs": "^17.7.2"
},
"dependencies": {
"@svta/common-media-library": "^0.7.1",
"bcp-47-match": "^2.0.3",
"bcp-47-normalize": "^2.3.0",
"codem-isoboxer": "0.3.9",
"fast-deep-equal": "3.1.3",
"html-entities": "^2.5.2",
"imsc": "^1.1.5",
"localforage": "^1.10.0",
"path-browserify": "^1.0.1",
"ua-parser-js": "^1.0.37"
},
"repository": {
"type": "git",
"url": "https://github.com/Dash-Industry-Forum/dash.js.git"
},
"files": [
"githook.cjs",
"index.d.ts",
"dist",
"contrib/akamai",
"contrib/videojs-vtt.js/vtt.min.js"
],
"keywords": [
"DASH",
"DASH-IF",
"MSE",
"EME",
"Smooth Streaming"
]
}