-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.46 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
{
"name": "microflo-compiler",
"version": "0.0.1",
"description": "MicroFlo compiler service",
"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": "https://github.com/microflo/microflo-compiler.git"
},
"bugs": "https://github.com/microflo/microflo-compiler/issues",
"homepage": "http://microflo.org",
"license": "MIT",
"main": "./index.js",
"files": [
"lib"
],
"scripts": {
"start": "node index.js",
"test": "grunt test"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"microflo": "^0.3.11",
"chance": "^0.5.9",
"coffee-script": "^1.7.1",
"connect-busboy": "0.0.1",
"express": "^4.5.0",
"fbp": "~1.1.0",
"pkginfo": "~0.3.0",
"yaml": "^0.2.3"
},
"devDependencies": {
"chai": "~1.8.0",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.7",
"grunt-mocha-test": "^0.12.1",
"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-zip": "^0.13.0",
"mocha": "^1.20.0",
"needle": "^0.7.2"
}
}