-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
97 lines (97 loc) · 2.75 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "foglet-core",
"version": "5.1.2",
"description": "Core of the foglet library",
"main": "./foglet-core.js",
"scripts": {
"lint": "standard --verbose | snazzy",
"fix": "standard --fix",
"esdoc": "esdoc",
"all": "npm run build && npm run min && npm test && npm run esdoc",
"test": "node ./tests/test.js",
"test-mocha": "nyc --reporter=html --report-dir=./docs/_coverage mocha tests/*-test.js --exit --timeout 30000 --reporter mochawesome --reporter-options reportDir=./docs/_test-reporter",
"build": "webpack --config ./configs/foglet-webpack-config.js",
"min": "webpack --config ./configs/foglet-webpack-config-min.js",
"example": "npm run build && DEBUG=signaling node tests/examples/server.js",
"dev": "webpack --config ./configs/foglet-webpack-config.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ran3d/foglet-core.git"
},
"keywords": [
"foglet",
"spray-wrtc",
"browser-to-browser",
"webRTC",
"foglet computing"
],
"author": "Folkvir",
"contributors": [
"Chat Wane (https://github.com/Chat-Wane)",
"Thomas Minier (https://github.com/Callidon)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ran3d/foglet-core/issues"
},
"homepage": "https://github.com/ran3d/foglet-core#readme",
"dependencies": {
"debug": "^3.1.0",
"lodash.merge": "^4.6.1",
"lodash.sortedindexby": "^4.6.0",
"media-recorder-stream": "^2.1.1",
"mediasource": "^2.2.1",
"n2n-overlay-wrtc": "^2.0.10",
"socket.io-client": "^2.1.1",
"spray-wrtc": "^2.0.11",
"tman-wrtc": "1.0.0",
"unicast-definition": "^2.0.2",
"uuid": "^3.3.0",
"version-vector-with-exceptions": "^0.1.0"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"chart.js": "^2.7.2",
"cors": "^2.8.4",
"esdoc": "^1.1.0",
"esdoc-custom-theme": "^1.4.2",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-node": "^1.0.3",
"esdoc-publish-html-plugin": "^1.1.2",
"esdoc-standard-plugin": "^1.0.0",
"foglet-signaling-server": "^1.0.3",
"jquery": "^3.3.1",
"mocha": "^5.2.0",
"mochawesome": "^3.0.2",
"nyc": "^12.0.2",
"p2p-graph": "^1.2.2",
"snazzy": "^7.1.1",
"standard": "^11.0.1",
"twilio": "^3.17.4",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.12.1",
"webpack-cli": "^3.0.8"
},
"bundledDependencies": [
"debug",
"lodash.merge",
"lodash.sortedindexby",
"readable-stream",
"socket.io-client",
"spray-wrtc",
"tman-wrtc",
"unicast-definition",
"uuid",
"version-vector-with-exceptions",
"n2n-overlay-wrtc"
],
"standard": {
"globals": [
"describe",
"it",
"assert"
]
}
}