-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.42 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-legoev3",
"description": "NoFlo components for a LEGO Mindstorms EV3",
"version": "0.1.0",
"author": {
"name": "Stefan Sauer",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/ensonic/noflo-legoev3.git"
},
"licenses": [
{
"type": "MIT",
"url": "undefined/blob/master/LICENSE-MIT"
}
],
"scripts": {
"test": "grunt test"
},
"dependencies": {
"noflo": "~0.5.0"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-coffee": "~0.10.1",
"grunt-coffeelint": "~0.0.10",
"grunt-cafe-mocha": "~0.1.12",
"chai": "~1.5.0",
"mocha": "~1.9.0",
"grunt-mocha-phantomjs": "~0.2.2",
"grunt-contrib-uglify": "~0.2.0",
"grunt-contrib-watch": "~0.3.1",
"grunt-noflo-manifest": "~0.1.11",
"grunt-noflo-browser": "^0.1.1"
},
"keywords": [
"noflo",
"lego",
"mindstorms",
"ev3"
],
"noflo": {
"components": {
"Beep": "components/Beep.coffee",
"Buttons": "components/Buttons.coffee",
"ColorSensor": "components/ColorSensor.coffee",
"LED": "components/LED.coffee",
"Motor": "components/Motor.coffee",
"TouchSensor": "components/TouchSensor.coffee",
"TouchSensor2": "components/TouchSensor2.coffee"
},
"graphs": {
"touchsensor": "graphs/touchsensor.fbp",
"EdgeFollowing": "graphs/EdgeFollowing.json"
}
}
}