forked from opentok/opentok-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2 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
{
"name": "opentok-react",
"version": "0.9.0",
"description": "React components for OpenTok.js",
"main": "dist/index.js",
"scripts": {
"test": "karma start",
"unit": "karma start --single-run",
"prepublish": "npm run build",
"build": "babel src --out-dir dist",
"lint": "eslint src test",
"example": "cd example && browserify -o bundle.js app.js && python -m SimpleHTTPServer"
},
"keywords": [
"tokbox",
"opentok",
"react",
"react-component",
"video",
"webrtc"
],
"repository": {
"type": "git",
"url": "https://github.com/opentok/opentok-react.git"
},
"contributors": [
{
"name": "Aiham Hammami",
"email": "[email protected]"
}
],
"license": "MIT",
"peerDependencies": {
"react": "^15.5.0 || ^16.0.0"
},
"dependencies": {
"lodash": "^4.13.1",
"prop-types": "^15.5.10",
"react-display-name": "^0.2.0",
"scriptjs": "^2.5.8",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"enzyme": "^2.6.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jasmine": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-browserify": "^5.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-spec-reporter": "^0.0.26",
"opentok-test-scripts": "^3.2.1",
"react": "^15.5.0",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.0",
"react-test-renderer": "^15.5.4",
"travis-multirunner": "^4.5.0",
"watchify": "^3.8.0"
},
"browserify": {
"transform": [
"babelify"
]
}
}