-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 959 Bytes
/
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
{
"name": "sndflo",
"version": "0.0.1",
"description": "Flow-based programming runtime for SuperCollider",
"keywords": [
"fbp",
"noflo",
"dataflow",
"supercollider",
"audio synthesis",
"signal processing"
],
"author": "Jon Nordby <[email protected]> (http://www.jonnor.com)",
"repository": {
"type": "git",
"url": "http://github.com/jonnor/sndflo.git"
},
"bugs": "http://github.com/jonnor/sndflo/issues",
"license": "MIT",
"scripts": {
"test": "mocha --reporter spec --compilers .coffee:coffee-script/register ./spec/*.coffee",
"start": "node sndflo.js"
},
"dependencies": {
"coffee-script": "^1.7.1",
"commander": "^2.1.0",
"fbp": "~1.0.2",
"flowhub-registry": "0.0.2",
"node-uuid": "^1.4.1",
"noflo": "~0.4.0",
"osc-min": "~0.0.12",
"pkginfo": "~0.3.0",
"websocket": "^1.0.8"
},
"devDependencies": {
"mocha": "~1.13.0",
"chai": "^1.9.1"
}
}