forked from AxisCommunications/media-stream-library-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.75 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
98
99
100
{
"name": "media-stream-library",
"version": "9.1.1",
"description": "Media stream library for Node & the Web.",
"license": "MIT",
"main": "dist/media-stream-library.min.js",
"types": "dist/esm/index.browser.d.ts",
"browserslist": "last 2 versions, not dead",
"bin": {
"live": "examples/node/player.js"
},
"files": [
"dist/**/*",
"examples/**/*",
"rtsp-ws-server/*",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"lint": "yarn eslint && yarn prettier:check",
"test": "jest --coverage",
"verify": "yarn lint && yarn test",
"build": "yarn build:esm && yarn build:cjs && yarn build:es5 && yarn build:bundle",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:es5": "tsc -p tsconfig.es5.json",
"build:bundle": "webpack && sbin/copyMinified.sh",
"eslint": "eslint --ext '.ts,.js' lib/",
"prettier:check": "prettier --check '{lib,examples}/**/*.{ts,js}'",
"prettier:fix": "prettier --write '{lib,examples}/**/*.{ts,js}' --fix --loglevel silent",
"rtsp": "rtsp-ws-server/start.sh",
"examples": "yarn build && http-server examples/browser",
"dev": "node sbin/dev.js",
"release": "sbin/release.sh"
},
"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.1",
"md5.js": "1.3.5",
"process": "0.11.10",
"stream-browserify": "3.0.0",
"ws": "7.4.2"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/preset-env": "7.12.11",
"@babel/preset-typescript": "7.12.7",
"@types/debug": "4.1.5",
"@types/jest": "26.0.20",
"@types/node": "14.14.22",
"@types/ws": "7.4.0",
"@typescript-eslint/eslint-plugin": "4.14.2",
"@typescript-eslint/parser": "4.14.2",
"babel-loader": "8.2.2",
"core-js": "3.8.3",
"cypress": "6.4.0",
"eslint": "7.19.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"http-server": "0.12.3",
"jest": "26.6.3",
"mock-socket": "9.0.3",
"prettier": "2.2.1",
"semver": "7.3.4",
"ts-jest": "26.5.0",
"typescript": "4.1.3",
"webpack": "5.19.0",
"webpack-cli": "4.4.0",
"yargs": "16.2.0"
},
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)test)\\.ts$",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}