-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
{
"name": "@api.video/media-stream-composer",
"version": "0.2.6",
"description": "api.video media stream composer",
"repository": {
"type": "git",
"url": "[email protected]:apivideo/api.video-typescript-media-stream-composer.git"
},
"author": "api.video <[email protected]> (https://api.video/)",
"license": "MIT",
"keywords": [
"video",
"upload",
"apivideo"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"tslint": "tslint --project .",
"build": "webpack --mode production",
"dev": "webpack --mode development --watch ",
"prepublishOnly": "npm run build",
"test": "npm run build && mocha -r ts-node/register -r jsdom-global/register 'test/**/*.ts'"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/jsdom": "^16.2.14",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"jsdom": "^20.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.0.0",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.2",
"tslint": "^6.1.3",
"typescript": "^4.7.4",
"web-audio-mock": "^0.1.9",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"xhr-mock": "^2.5.1"
},
"dependencies": {
"@api.video/media-recorder": "^1.0.11",
"core-js": "^3.23.4",
"@banuba/webar": "^1.5.0"
},
"engines" : {
"node" : ">=15.0.0"
}
}