This repository has been archived by the owner on Mar 3, 2023. It is now read-only.
forked from opentok/accelerator-core-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.43 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
{
"name": "@bouncedinc/opentok-accelerator-core",
"version": "3.0.4",
"description": "Opentok Accelerator Core",
"repository": {
"type": "git",
"url": "git+https://github.com/opentok/accelerator-core-js.git"
},
"main": "dist/core.js",
"scripts": {
"build:node": "babel -d ./dist/ ./src/",
"build:browser-polyfill": "(echo \"require('babel-polyfill');\\n\"; cat src/core.js) > src/browser-temp.js",
"build:browser-browserify": "mkdir -p browser && browserify src/browser-temp.js -o browser/opentok-acc-core.js -t [ babelify --presets [ es2015 ] --plugins [ transform-class-properties ] ] --im",
"build:browser": "npm run build:browser-polyfill && npm run build:browser-browserify && rm src/browser-temp.js",
"build:logversion": "replace '(js-vsol-)(x.y.z)' '$1'$npm_package_version dist/* browser/*",
"build": "npm run build:node && npm run build:browser && npm run build:logversion",
"test": "karma start"
},
"keywords": [
"opentok",
"accelerator",
"core",
"opentok-acc-pack",
"webrtc",
"communication",
"video",
"audio"
],
"author": "adrice727@gmail.com",
"license": "MIT",
"devDependencies": {
"@bouncedinc/opentok-annotation": "^2.0.63",
"@bouncedinc/opentok-archiving": "^1.0.23",
"@bouncedinc/opentok-screen-sharing": "^1.0.35",
"@bouncedinc/opentok-text-chat": "^2.0.4",
"babel-cli": "*",
"babel-eslint": "^6.1.2",
"babel-plugin-espower": "^2.3.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "*",
"babel-preset-es2015": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^13.3.0",
"chai": "^4.1.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"karma": "^1.7.1",
"karma-browserify": "^5.1.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"mocha": "^4.0.1",
"replace": "^0.3.0"
},
"dependencies": {
"opentok-solutions-logging": "^1.0.7"
},
"bugs": {
"url": "https://github.com/opentok/accelerator-core-js/issues"
},
"homepage": "https://github.com/opentok/accelerator-core-js#readme",
"directories": {
"test": "test"
}
}