forked from AxisCommunications/media-stream-player-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.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
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
102
103
104
105
106
107
108
109
110
{
"name": "media-stream-player",
"version": "6.3.1",
"description": "Player built on top of media-stream-library",
"license": "MIT",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"lint": "yarn lint:ts && yarn prettier:check",
"lint:fix": "yarn lint:ts --fix && yarn reformat",
"lint:ts": "eslint --ext .ts,.tsx . --cache",
"lint:css": "stylelint \"./**/*.tsx\"",
"prettier:check": "prettier --check 'lib/**/*.{js,ts,jsx,tsx}'",
"prettier:fix": "prettier --write 'lib/**/*.{js,ts,jsx,tsx}' --fix --loglevel silent",
"test": "jest --coverage --passWithNoTests",
"dev:esm": "yarn tsc --watch",
"dev:example": "webpack serve --config webpack.example.js --env camera=$MSP_CAMERA",
"dev": "yarn build:esm && concurrently \"yarn dev:esm\" \"yarn dev:example\"",
"build:esm": "yarn tsc",
"build:bundle": "webpack --config webpack.config.js && sbin/copyMinified.sh",
"build:bundle-legacy": "webpack --config webpack.legacy.config.js",
"build": "yarn build:esm && yarn build:bundle && yarn build:bundle-legacy",
"release": "sbin/release.py",
"commitlint": "sbin/commitlint.py"
},
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/media-stream-player-js"
},
"keywords": [
"video",
"live",
"streaming",
"rtsp",
"ip",
"camera"
],
"dependencies": {
"@juggle/resize-observer": "3.3.1",
"debug": "4.3.2",
"react-hooks-shareable": "1.41.0"
},
"peerDependencies": {
"luxon": "^1.25.0",
"media-stream-library": "^10.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-object-rest-spread": "7.15.6",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "7.15.0",
"@types/debug": "4.1.7",
"@types/jest": "27.0.1",
"@types/luxon": "2.0.4",
"@types/react": "17.0.20",
"@types/react-dom": "17.0.9",
"@types/styled-components": "5.1.14",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"babel-loader": "^8.2.3",
"concurrently": "6.2.1",
"core-js": "3.17.3",
"eslint": "7.32.0",
"eslint-config-typescript-shareable": "1.3.0",
"eslint-plugin-functional": "3.7.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-react": "7.25.1",
"eslint-plugin-react-hooks": "4.2.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.3.2",
"jest": "^27.3.1",
"luxon": "2.0.2",
"media-stream-library": "10.2.0",
"prettier": "2.4.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-is": "17.0.2",
"semver": "7.3.5",
"style-loader": "3.2.1",
"styled-components": "5.3.1",
"stylelint": "13.13.1",
"ts-jest": "27.0.5",
"typescript": "4.4.3",
"webpack": "5.52.1",
"webpack-cli": "4.8.0",
"webpack-dev-server": "4.2.1"
},
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)test)\\.ts$",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"packageManager": "[email protected]"
}