-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "video-stream-merger",
"version": "4.0.1",
"description": "Create a composite from multiple MediaStreams.",
"author": "Thomas Mullen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/t-mullen/video-stream-merger"
},
"source": "src/index.ts",
"main": "dist/video-stream-merger.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"files": [
"/dist",
"/src",
"README.md"
],
"directories": {
"test": "test"
},
"scripts": {
"lint-fix": "eslint . --ext .ts --fix",
"lint": "eslint . --ext .ts",
"test": "standard --fix dist/* && npm run test-browser-local",
"test-browser-local": "zuul --local -- test/*.js",
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch",
"start": "http-server -c-1 ."
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"awesome-typescript-loader": "^5.2.1",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"eslint": "^7.29.0",
"http-server": "^0.12.3",
"standard": "^8.6.0",
"tape": "^4.6.3",
"typescript": "^4.3.5",
"webpack": "^5.45.1",
"webpack-cli": "^3.3.10"
}
}