forked from pjchender/react-use-opentok
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.9 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
{
"name": "react-use-opentok",
"version": "2.3.0",
"description": "React Hook for @opentok/client SDK",
"contributors": [
"PJCHENder <pjchender@gmail.com> (https://pjchender.blogspot.com)",
"Andyyou <andyyu0920@gmail.com> (http://andyyou.github.io/)"
],
"license": "MIT",
"main": "dist/react-use-opentok.cjs.min.js",
"module": "dist/react-use-opentok.esm.min.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"start": "rollup -c -w",
"build": "npm run clean && rollup -c",
"clean": "rm -rf dist",
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"coveralls": "npm test -- --coverage && cat ./coverage/lcov.info | coveralls",
"build:site": "cd site && npm install && npm run build",
"deploy": "gh-pages -d site/public",
"semantic-release": "semantic-release",
"semantic-release:dry": "npx semantic-release --dry-run --no-ci"
},
"files": [
"dist"
],
"keywords": [
"tokbox",
"opentok",
"sdk",
"react",
"hook"
],
"repository": {
"type": "git",
"url": "https://github.com/pjchender/react-use-opentok.git"
},
"homepage": "https://pjchender.github.io/react-use-opentok/",
"bugs": {
"url": "https://github.com/pjchender/react-use-opentok/issues"
},
"peerDependencies": {
"react": "^16.13.0",
"@opentok/client": "^2.16.3"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/runtime-corejs3": "^7.8.4",
"@opentok/client": "^2.16.6",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-url": "^4.0.1",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@testing-library/jest-dom": "^5.0.2",
"@testing-library/react": "^9.4.0",
"@testing-library/react-hooks": "^3.2.1",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"babel-eslint": "^10.0.3",
"coveralls": "^3.0.9",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-react-app": "^5.1.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest-dom": "^2.0.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"gh-pages": "^2.0.1",
"react": "^16.13.0",
"react-scripts": "^3.0.1",
"react-test-renderer": "^16.9.0",
"rollup": "^2.0.5",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-url": "^3.0.1",
"semantic-release": "^17.0.1",
"typescript": "^3.7.5"
},
"dependencies": {}
}