-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.66 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
{
"name": "noflo-runtime-webrtc",
"description": "NoFlo runtime transport over WebRTC",
"version": "0.13.0",
"author": {
"name": "Jon Nordby",
"email": "jononor@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/noflo/noflo-runtime-webrtc.git"
},
"scripts": {
"lint": "eslint runtime/*.js spec/*.js",
"build": "noflo-cache-preheat && webpack --config ./webpack.config.js",
"pretest": "npm run lint && npm run build",
"test:nodejs": "mocha --exit --require spec/utils/inject.js spec/*.js",
"test:browser": "karma start node_modules/noflo-webpack-config/karma.config.js",
"test": "npm run test:nodejs && npm run test:browser"
},
"dependencies": {
"fbp-protocol-client": "^0.3.1",
"noflo-runtime-base": "^0.13.0",
"simple-peer": "^9.7.2",
"uuid": "^8.3.0"
},
"optionalDependencies": {
"wrtc": "^0.4.6"
},
"devDependencies": {
"buffer": "^6.0.1",
"chai": "^4.0.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-chai": "0.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"karma": "^6.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^8.1.3",
"noflo": "^1.4.0",
"noflo-component-loader": "^0.4.0",
"noflo-core": ">= 0.4.0",
"noflo-webpack-config": "^2.0.1",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"util": "^0.12.3",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
},
"keywords": [
"noflo"
],
"main": "./runtime/network.js"
}