forked from microflo/microflo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.19 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "microflo",
"version": "0.3.29",
"description": "Flow-based programming runtime for microcontrollers",
"keywords": [
"fbp",
"noflo",
"dataflow",
"microcontroller",
"physical computing",
"Arduino",
"embedded systems",
"atmel avr"
],
"author": "Jon Nordby <[email protected]> (http://www.jonnor.com)",
"repository": {
"type": "git",
"url": "http://github.com/microflo/microflo.git"
},
"bugs": "http://github.com/microflo/microflo/issues",
"homepage": "http://microflo.org",
"license": "MIT",
"main": "./lib/microflo",
"bin": {
"microflo": "./microflo.js"
},
"files": [
"lib",
"microflo/commandformat.json",
"microflo.js",
"microflo.coffee",
"microflo/",
"Makefile",
"Makefile.stellaris",
"startup_gcc.c",
"thirdparty/Adafruit_NeoPixel",
"thirdparty/Adafruit_WS2801",
"thirdparty/DallasTemperature.patch",
"thirdparty/DallasTemperature.zip",
"thirdparty/OneWire.patch",
"thirdparty/OneWire.zip",
"thirdparty/NewPing",
"stellaris.ld"
],
"scripts": {
"start": "node microflo.js runtime",
"test": "grunt test"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"coffee-script": "^1.7.1",
"commander": "~2.1.0",
"declarec": "^0.0.3",
"fbp": "~1.1.0",
"flowhub-registry": "~0.0.1",
"js-yaml": "^3.2.7",
"node-uuid": "^1.4.1",
"pkginfo": "~0.3.0",
"serialport": "^1.4.5",
"websocket": "~1.0.8"
},
"devDependencies": {
"chai": "~1.8.0",
"coffeelint": "^1.9.2",
"fbp-protocol": "^0.1.6",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.7",
"grunt-coffeelint": "0.0.13",
"grunt-combine": "~0.8.3",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-coffee": "~0.6.6",
"grunt-contrib-compress": "^0.7.0",
"grunt-contrib-connect": "~0.6.0",
"grunt-contrib-copy": "^0.5.0",
"grunt-contrib-uglify": "~0.2.0",
"grunt-exec": "~0.4.0",
"grunt-mocha-phantomjs": "^0.6.0",
"grunt-mocha-test": "^0.12.1",
"grunt-noflo-browser": "^0.1.3",
"grunt-shell-spawn": "^0.3.2",
"grunt-zip": "^0.13.0",
"microflo-core": "^0.3.31",
"mocha": "^1.20.0",
"needle": "^0.7.2"
}
}