-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.57 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
{
"name": "synchrony",
"description": "Installation experiments",
"version": "0.1.0",
"author": {
"name": "Jon Nordby",
"email": "jononor@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/noflo/noflo-browser-app.git"
},
"licenses": [
{
"type": "MIT",
"url": "undefined/blob/master/LICENSE-MIT"
}
],
"scripts": {
"test": "grunt test"
},
"dependencies": {
"microflo": "^0.3.28",
"microflo-core": "^0.3.31",
"noflo": "~0.5.0",
"noflo-core": "^0.1.11",
"noflo-runtime": "^0.1.4",
"osc-min": "^0.2.0",
"simple-server": "^1.0.1"
},
"devDependencies": {
"chai": "~1.9.0",
"grunt": "~0.4.1",
"grunt-cafe-mocha": "~0.1.12",
"grunt-coffeelint": "~0.0.10",
"grunt-contrib-coffee": "~0.10.1",
"grunt-contrib-uglify": "~0.2.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-exec": "^0.4.6",
"grunt-gh-pages": "^0.9.1",
"grunt-mocha-phantomjs": "~0.2.2",
"grunt-noflo-browser": "^0.1.8",
"grunt-noflo-manifest": "~0.1.11",
"mocha": "~1.21.0"
},
"keywords": [],
"noflo": {
"components": {
"DoSomething": "components/DoSomething.coffee",
"SendOsc": "components/SendOsc.coffee"
},
"runtimes": [
{
"id": "Micro",
"label": "microcontroller",
"description": "Handles ultrasonic distance sensors and LEDs",
"icon": "lightbulb-o",
"type": "microflo",
"protocol": "microflo",
"graph": "./graphs/microsynchro.fbp",
"address": "serial:///dev/ttyACM0"
}
]
}
}