forked from skyway/skyway-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
63 lines (63 loc) · 1.68 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
{
"name": "skyway-js",
"version": "1.1.15",
"description": "The official JavaScript SDK for SkyWay",
"main": "dist/skyway.js",
"module": "src/peer.js",
"scripts": {
"test": "karma start ./karma.conf.js",
"clean": "del ./dist",
"lint": "eslint .",
"build": "NODE_ENV=production webpack",
"dev": "webpack -w",
"doc": "jsdoc -c ./jsdoc.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skyway/skyway-js-sdk"
},
"files": [
"dist/skyway.js",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"author": "NTT Communications Corp.",
"license": "MIT",
"devDependencies": {
"babel-loader": "^7.1.4",
"babel-plugin-espower": "^2.4.0",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-es2015": "^6.24.1",
"del-cli": "^1.1.0",
"eslint": "^5.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.4.0",
"inject-loader": "^4.0.1",
"jsdoc": "^3.5.3",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"mocha": "^5.2.0",
"power-assert": "^1.4.4",
"prettier": "^1.9.2",
"sinon": "^6.0.1",
"webpack": "^4.12.1",
"webpack-cli": "^3.0.8"
},
"dependencies": {
"detect-browser": "^2.1.0",
"enum": "git+https://github.com/eastandwest/enum.git#react-native",
"events": "^1.1.0",
"js-binarypack": "0.0.9",
"object-sizeof": "^1.0.10",
"query-string": "^5.0.0",
"sdp-interop": "^0.1.11",
"sdp-transform": "^2.3.0",
"socket.io-client": "^2.0.3"
}
}