This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
forked from Dash-Industry-Forum/dash.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.68 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
{
"name": "dashjs",
"version": "4.2.1",
"description": "A reference client implementation for the playback of MPEG DASH via Javascript and compliant browsers.",
"author": "Dash Industry Forum",
"license": "BSD-3-Clause",
"main": "dist/dash.all.debug.js",
"types": "index.d.ts",
"scripts": {
"dev": "tsc && webpack --config build/webpack.dev.js --mode development --watch --progress",
"start": "webpack serve --config build/webpack.dev.js",
"lint": "eslint src/**/*.js test/unit/mocks/*.js test/unit/*.js",
"build": "tsc && rimraf dist && webpack --config build/webpack.prod.js",
"doc": "jsdoc -c build/jsdoc/jsdoc_conf.json -d docs/jsdoc",
"coverage": "nyc --reporter=text --reporter=lcov --reporter=text-summary --report-dir='./coverage' npm run test",
"test": "mocha test/unit --require mochahook",
"test-browserunit": "karma start build/karma.conf.js",
"test-functional": "node test/functional/runTests.js --selenium=remote --app=remote",
"prepack": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/eslint-parser": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"babel": "^5.3.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"chai": "^3.4.1",
"chai-spies": "^1.0.0",
"eslint": "^7.23.0",
"eslint-webpack-plugin": "^2.5.3",
"ftp-deploy": "^2.4.1",
"ink-docstrap": "^1.3.2",
"intern": "^4.9.1",
"jsdoc": "^3.6.7",
"jsdom": "^13.2.0",
"mocha": "^9.0.0",
"nyc": "^15.1.0",
"karma": "^6.3.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"replace-in-file": "^6.2.0",
"rimraf": "^3.0.2",
"sinon": "^7.3.2",
"string-replace-loader": "^3.0.1",
"typescript": "^4.1.5",
"webpack": "^4.44.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"yargs": "16.0.3"
},
"dependencies": {
"codem-isoboxer": "0.3.6",
"es6-promise": "^4.2.8",
"fast-deep-equal": "2.0.1",
"html-entities": "^1.2.1",
"imsc": "^1.0.2",
"localforage": "^1.7.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Dash-Industry-Forum/dash.js.git"
},
"files": [
"githook.js",
"index.d.ts",
"dist",
"docs/jsdoc"
]
}