-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 2.15 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
{
"name": "@emliri/mmjs",
"version": "4.0.0",
"description": "Multimedia streaming framework for browser and node",
"keywords": [
"multimedia",
"streaming",
"pipeline",
"framework",
"mux",
"demux",
"transcode",
"video",
"audio",
"media",
"container",
"mp4",
"mov"
],
"repository": "github.com/tchakabam/multimedia.js.git",
"author": "Stephan Hesse <[email protected]>, <[email protected]>",
"license": "LGPL, Copyright (c) 2016, 2017, 2018, 2019, 2020, 2021 Stephan Hesse, EMLIRI Consultancy Berlin",
"public": true,
"publishConfig": {
"access": "public"
},
"main": "index.ts",
"files": [
"dist",
"vendor/ffmpeg.js"
],
"engines": {
"node": ">=14 <=17",
"npm": ">=8"
},
"dependencies": {
"bowser": "1.9.4",
"eventemitter3": "4.0.0",
"file-saver": "2.0.4",
"m3u8-parser": "4.2.0",
"node-http-xhr": "1.3.4",
"url-toolkit": "2.1.4",
"uuid": "3.3.2"
},
"devDependencies": {
"@types/file-saver": "2.0.2",
"@types/jest": "26.0.23",
"@types/node": "15.0.3",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "5.7.0",
"@typescript-eslint/parser": "5.7.0",
"cross-env": "7.0.3",
"eslint": "7.32.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"jest": "26.6.3",
"should": "13.1.3",
"ts-jest": "26.5.6",
"ts-loader": "9.2.2",
"ts-node": "9.1.1",
"typescript": "4.3.2",
"webpack": "5.38.0",
"webpack-cli": "4.7.0"
},
"scripts": {
"postinstall": "cd src/ext-mod/aac.js && npm i",
"build": "webpack --progress",
"build-decls": "tsc --build ./tsconfig-decl-only.json && rm -rf dist/mmjs.umd.d.ts && cp dist/index.d.ts dist/mmjs.umd.d.ts",
"build-watch": "cross-env DEBUG=1 npm run build -- --watch",
"lint": "eslint *.js *.ts bin src test-cases --ext .ts --ext .js",
"lint-ext": "eslint *.js *.ts bin src/ext/inspector.js --ext .ts --ext .js",
"lint-fix": "npm run lint -- --fix --quiet",
"prepublishOnly": "npm test && make",
"start": "cross-env NO_TYPES=1 NO_FRILLS=1 npm run build-watch",
"test": "jest"
}
}