forked from opentok/opentok-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.14 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.14 KB
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
{
"name": "@doctrinab/opentok-react",
"version": "1.3.0",
"description": "React components for OpenTok.js",
"main": "dist/index.js",
"scripts": {
"types": "tsd",
"test": "karma start",
"unit": "karma start --single-run",
"prepublishOnly": "npm run build",
"build": "NODE_ENV=production babel src --out-dir dist",
"lint": "eslint src test"
},
"keywords": [
"tokbox",
"opentok",
"react",
"react-component",
"video",
"webrtc"
],
"repository": {
"type": "git",
"url": "https://github.com/doctrinab/opentok-react.git"
},
"license": "MIT",
"peerDependencies": {
"react": "16 || 17 || 18"
},
"dependencies": {
"lodash": "^4.18.1",
"prop-types": "^15.8.1",
"react-display-name": "^0.2.0",
"scriptjs": "^2.5.8",
"uuid": "^14.0.0"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.24.5",
"@babel/eslint-parser": "^7.24.6",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-transform-react-constant-elements": "^7.23.3",
"@babel/plugin-transform-react-inline-elements": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.24.6",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@types/react": "^17.0.43",
"babel-loader": "^10.1.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.8",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jasmine": "^4.2.2",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"jasmine-core": "^6.2.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"karma-spec-reporter": "^0.0.36",
"karma-webpack": "^5.0.1",
"opentok-test-scripts": "^3.2.1",
"prettier": "^3.2.5",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"tsd": "^0.33.0",
"webpack": "^5.106.2"
},
"types": "./types/index.d.ts",
"browserslist": [
"last 2 major versions",
"last 4 iOS major versions",
"> 5%",
"not dead",
"not IE 11"
]
}