-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
48 lines (48 loc) · 1.6 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
{
"name": "opentok-layout-js",
"version": "5.5.0",
"description": "Automatic layout of video elements (publisher and subscriber) minimising white-space for the OpenTok on WebRTC API. This is intended for use with the OpenTok on WebRTC JS API.",
"main": "opentok-layout.js",
"types": "./types/opentok-layout-js.d.ts",
"devDependencies": {
"@types/jquery": "^3.5.16",
"babel-preset-env": "^1.7.0",
"eslint": "^5.1.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"http-server": "^14.1.1",
"karma": "^6.3.2",
"karma-babel-preprocessor": "^7.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^0.1.3",
"karma-jasmine": "~0.2.0",
"karma-sauce-launcher": "^1.2.0",
"puppeteer": "^19.4.1",
"ts-loader": "^8.4.0",
"typescript": "^4.9.4",
"unminified-webpack-plugin": "^2.0.0",
"webpack": "^4.46.0",
"webpack-command": "^0.4.1"
},
"scripts": {
"test": "npx eslint . && node ./tests/test-node.js && karma start tests/karma.conf.js --single-run && npm run type-test",
"type-test": "npx --package typescript tsc types/test.ts --noEmit --noErrorTruncation",
"start": "http-server",
"dev": "npx webpack -w & npm start"
},
"repository": {
"type": "git",
"url": "https://github.com/aullman/opentok-layout-js.git"
},
"keywords": [
"opentok",
"webrtc"
],
"author": "Adam Ullman",
"license": "MIT",
"bugs": {
"url": "https://github.com/aullman/opentok-layout-js/issues"
},
"homepage": "https://github.com/aullman/opentok-layout-js"
}