-
Notifications
You must be signed in to change notification settings - Fork 0
/
component.json
51 lines (51 loc) · 1.13 KB
/
component.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
{
"name": "noflo-browser-app",
"description": "The best project ever.",
"author": "Jon Nordby <jononor@gmail.com>",
"repo": "noflo/noflo-browser-app",
"version": "0.1.0",
"keywords": [],
"dependencies": {
"noflo/noflo": "*",
"noflo/noflo-dom": "*",
"noflo/noflo-core": "*",
"noflo/noflo-interaction": "*",
"noflo/noflo-runtime-webrtc": "*",
"noflo/noflo-runtime-iframe": "*",
"noflo/noflo-runtime": "*"
},
"remotes": [
"https://raw.githubusercontent.com"
],
"scripts": [
"index.js",
"components/DoSomething.coffee",
"graphs/main.json",
"graphs/sim.json"
],
"json": [
"graphs/main.json",
"component.json",
"graphs/sim.json"
],
"noflo": {
"graphs": {
"main": "graphs/main.json",
"sim": "graphs/sim.json"
},
"components": {
"DoSomething": "components/DoSomething.coffee"
},
"runtimes": [
{
"id": "synth",
"label": "synth",
"description": "My RPi synth",
"type": "sndflo",
"protocol": "websocket",
"address": "ws://localhost:3569",
"secret": "no-secret"
}
]
}
}