forked from twilio/twilio-video.js
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.91 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.91 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
83
84
85
86
87
88
89
90
91
92
{
"name": "twilio-video",
"title": "Twilio Video",
"description": "Twilio Video JavaScript library",
"version": "1.0.0-dev",
"homepage": "https://twilio.com",
"author": "Mark Andrus Roberts <mroberts@twilio.com>",
"contributors": [
"Ryan Rowland <rrowland@twilio.com>",
"Manjesh Malavalli <mmalavalli@twilio.com>"
],
"keywords": [
"twilio",
"webrtc",
"library",
"javascript",
"video",
"rooms"
],
"repository": {
"type": "git",
"url": "https://github.com/twilio/twilio-video.js.git"
},
"devDependencies": {
"browserify": "^9.0.3",
"cheerio": "^0.18.0",
"chromedriver": "^2.26.1",
"eslint": "^2.12.0",
"ink-docstrap": "^1.3.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"mocha": "^2.2.5",
"mock-browser": "^0.91.34",
"npm-run-all": "^4.0.0",
"phantom": "^2.1.14",
"release-tool": "^0.2.2",
"requirejs": "^2.2.0",
"rimraf": "^2.5.4",
"selenium-webdriver": "^3.0.1",
"sinon": "^1.17.7",
"twilio": "^2.11.1",
"uglify-js": "^2.7.5",
"vinyl-fs": "^2.4.4",
"vinyl-source-stream": "^1.1.0"
},
"engines": {
"node": ">=0.12"
},
"license": "BSD-3-Clause",
"main": "./lib/index.js",
"scripts": {
"lint": "eslint ./lib",
"test:unit": "mocha ./test/unit/index.js",
"test:integration": "mocha ./test/integration/index.js --timeout 5000",
"test:integration:travis": "node ./scripts/integration.js",
"test:umd": "mocha ./test/umd/index.js",
"test:framework:angular:install": "cd ./test/framework/twilio-video-angular && rimraf ./node_modules && npm install",
"test:framework:angular:test": "node ./scripts/framework.js twilio-video-angular",
"test:framework:angular:run": "mocha ./test/framework/twilio-video-angular.js",
"test:framework:angular": "npm-run-all test:framework:angular:*",
"test:framework:meteor:install": "cd ./test/framework/twilio-video-meteor && rimraf ./node_modules && npm install",
"test:framework:meteor:test": "node ./scripts/framework.js twilio-video-meteor",
"test:framework:meteor:run": "mocha ./test/framework/twilio-video-meteor.js",
"test:framework:meteor": "npm-run-all test:framework:meteor:*",
"test:framework:no-framework:run": "mocha ./test/framework/twilio-video-no-framework.js",
"test:framework:no-framework": "npm-run-all test:framework:no-framework:*",
"test:framework:react:install": "cd ./test/framework/twilio-video-react && rimraf ./node_modules && npm install",
"test:framework:react:test": "node ./scripts/framework.js twilio-video-react",
"test:framework:react:build": "cd ./test/framework/twilio-video-react && npm run build",
"test:framework:react:run": "mocha ./test/framework/twilio-video-react.js",
"test:framework:react": "npm-run-all test:framework:react:*",
"test:framework": "npm-run-all test:framework:angular test:framework:meteor test:framework:no-framework test:framework:react",
"test": "npm-run-all test:unit test:integration",
"build:js": "node ./scripts/build.js ./src/twilio-video.js ./LICENSE.md ./dist/twilio-video.js",
"build:min.js": "uglifyjs ./dist/twilio-video.js -o ./dist/twilio-video.min.js --comments \"/^! twilio-video.js/\" -b beautify=false,ascii_only=true",
"build:test:webrtc": "browserify ./test/webrtc.js -o ./test/dist/webrtc.js",
"build": "npm-run-all clean lint docs cover test:integration build:js build:min.js test:umd",
"build:travis": "npm-run-all clean lint docs cover test:integration:travis build:js build:min.js test:umd test:framework",
"docs": "node ./scripts/docs.js ./dist/docs",
"clean": "rimraf ./coverage ./dist ./test/dist/webrtc.js",
"cover": "istanbul cover _mocha -- ./test/unit/index.js"
},
"dependencies": {
"sip.js": "twilio/SIP.js.git#420ed46ba6751b32e99950fb6fb84683afb820cc",
"ws": "^1.0.1",
"xmlhttprequest": "^1.8.0"
},
"browser": {
"ws": "./src/ws.js",
"xmlhttprequest": "./src/xmlhttprequest.js"
}
}