forked from AxisCommunications/media-stream-library-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.58 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": "media-stream-library",
"version": "11.1.1",
"description": "Media stream library for Node & the Web.",
"license": "MIT",
"main": "dist/node-cjs.js",
"module": "dist/node-esm.js",
"browser": {
"dist/node-cjs.js": "dist/browser-cjs.js",
"dist/node-esm.js": "dist/browser-esm.js",
"stream": "stream-browserify"
},
"types": "dist/index.browser.d.ts",
"bin": {
"live": "examples/node/player.js"
},
"files": [
"dist/**/*",
"examples/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"lint": "yarn lint:ts && yarn prettier:check",
"test": "jest --coverage",
"verify": "yarn lint && yarn test",
"build": "yarn build:types && yarn build:bundle",
"build:types": "tsc -p tsconfig.json",
"build:bundle": "node esbuild.js && sbin/copyMinified.sh",
"lint:ts": "eslint --ext '.ts' lib/",
"prettier:check": "prettier --check '{lib,examples}/**/*.{ts,js}'",
"prettier:fix": "prettier --write '{lib,examples}/**/*.{ts,js}' --fix --loglevel silent",
"rtsp": "sbin/rtsp-ws-server.sh",
"examples": "yarn build && http-server examples/browser",
"dev": "node sbin/dev.js",
"release": "sbin/release.py"
},
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/media-stream-library-js"
},
"keywords": [
"video",
"live",
"streaming",
"rtsp"
],
"dependencies": {
"buffer": "6.0.3",
"debug": "4.3.4",
"events": "3.3.0",
"process": "0.11.10",
"stream-browserify": "3.0.0",
"ts-md5": "1.2.11",
"ws": "8.5.0"
},
"devDependencies": {
"@types/debug": "4.1.7",
"@types/jest": "27.4.1",
"@types/node": "16.11.32",
"@types/ws": "8.5.3",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"cypress": "9.6.0",
"esbuild": "0.14.38",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard-with-typescript": "21.0.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"http-server": "14.1.0",
"jest": "27.5.1",
"jest-environment-jsdom": "27.5.1",
"mock-socket": "9.1.3",
"prettier": "2.6.2",
"semver": "7.3.7",
"ts-jest": "27.1.4",
"typescript": "4.6.4",
"yargs": "17.4.1"
},
"jest": {
"testEnvironment": "jsdom",
"testRegex": "(/__tests__/.*|(\\.|/)test)\\.ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
},
"packageManager": "[email protected]"
}