forked from AxisCommunications/media-stream-library-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.74 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
101
{
"name": "media-stream-library",
"version": "8.0.3",
"description": "Media stream library for Node & the Web.",
"license": "MIT",
"main": "dist/cjs/index.node.js",
"browser": "dist/esm/index.browser.js",
"browserslist": "last 2 versions, not dead",
"module": "dist/esm/index.node.js",
"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",
"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": "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": "5.7.1",
"debug": "4.2.0",
"md5.js": "1.3.5",
"process": "0.11.10",
"stream-browserify": "3.0.0",
"ws": "7.3.1"
},
"devDependencies": {
"@babel/core": "7.12.0",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-object-rest-spread": "7.11.0",
"@babel/preset-env": "7.12.0",
"@babel/preset-typescript": "7.12.0",
"@types/debug": "4.1.5",
"@types/jest": "26.0.15",
"@types/node": "14.14.6",
"@types/ws": "7.2.9",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"babel-loader": "8.1.0",
"core-js": "3.6.5",
"cypress": "5.5.0",
"eslint": "7.12.1",
"eslint-config-prettier": "6.15.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.4.2",
"mock-socket": "9.0.3",
"prettier": "2.1.2",
"semver": "7.3.2",
"ts-jest": "26.4.3",
"typescript": "4.0.5",
"webpack": "5.4.0",
"webpack-cli": "4.2.0",
"yargs": "16.1.0"
},
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)test)\\.ts$",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}