-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
62 lines (62 loc) · 2.13 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
{
"name": "opentok-accelerator-core",
"version": "2.0.21",
"description": "Opentok Accelerator Core",
"repository": "https://github.com/opentok/accelerator-core-js",
"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": "[email protected]",
"license": "MIT",
"devDependencies": {
"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": "^4.18.2",
"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": "^5.0.9",
"karma-browserify": "^7.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-firefox-launcher": "^1.3.0",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^2.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"mocha": "^4.0.1",
"opentok-annotation": "^2.0.55",
"opentok-archiving": "^1.0.19",
"opentok-screen-sharing": "^1.0.27",
"opentok-text-chat": "^1.0.30",
"replace": "^1.2.1"
},
"dependencies": {
"opentok-solutions-logging": "^1.0.7"
}
}