This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomponent.json
81 lines (81 loc) · 2.74 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
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
{
"name": "noflo-mirobot",
"description": "Components for Mirobot.",
"author": "Vilson Vieira <vilson@void.cc>",
"repo": "vilson/noflo-mirobot",
"version": "0.1.0",
"keywords": [],
"dependencies": {
"noflo/noflo": "*",
"noflo/noflo-dom": "*",
"noflo/noflo-core": "*",
"noflo/noflo-interaction": "*",
"noflo/noflo-runtime-webrtc": "*",
"noflo/noflo-image": "*"
},
"scripts": [
"index.js",
"vendor/mirobot.js",
"components/ControlMirobot.coffee",
"components/ControlVerticalMirobot.coffee",
"components/Forward.coffee",
"components/Repeat.coffee",
"components/Back.coffee",
"components/Left.coffee",
"components/Pause.coffee",
"components/Pendown.coffee",
"components/Penup.coffee",
"components/PixelsToPoints.coffee",
"components/Right.coffee",
"components/PointsToPolar.coffee",
"components/Dither.coffee",
"components/FloydSteinberg.coffee",
"components/BlackAndWhiteFilter.coffee",
"components/ThresholdFilter.coffee",
"components/TSP.coffee",
"components/PreviewCommand.coffee",
"components/ProcessCommands.coffee",
"components/SendCommand.coffee",
"components/Array.coffee",
"components/EstimateTime.coffee",
"components/GetMirobotLib.coffee",
"graphs/DrawImage.json",
"graphs/DrawPoints.json"
],
"json": [
"component.json",
"graphs/DrawImage.json",
"graphs/DrawPoints.json"
],
"noflo": {
"components": {
"Array": "components/Array.coffee",
"Back": "components/Back.coffee",
"BlackAndWhiteFilter": "components/BlackAndWhiteFilter.coffee",
"ControlMirobot": "components/ControlMirobot.coffee",
"ControlVerticalMirobot": "components/ControlVerticalMirobot.coffee",
"Dither": "components/Dither.coffee",
"EstimateTime": "components/EstimateTime.coffee",
"FloydSteinberg": "components/FloydSteinberg.coffee",
"Forward": "components/Forward.coffee",
"GetMirobotLib": "components/GetMirobotLib.coffee",
"Left": "components/Left.coffee",
"Pause": "components/Pause.coffee",
"Pendown": "components/Pendown.coffee",
"Penup": "components/Penup.coffee",
"PixelsToPoints": "components/PixelsToPoints.coffee",
"PointsToPolar": "components/PointsToPolar.coffee",
"PreviewCommand": "components/PreviewCommand.coffee",
"ProcessCommands": "components/ProcessCommands.coffee",
"Repeat": "components/Repeat.coffee",
"Right": "components/Right.coffee",
"SendCommand": "components/SendCommand.coffee",
"ThresholdFilter": "components/ThresholdFilter.coffee",
"TSP": "components/TSP.coffee"
},
"graphs": {
"DrawImage": "graphs/DrawImage.json",
"DrawPoints": "graphs/DrawPoints.json"
}
}
}