forked from colinbdclark/osc.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.37 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.37 KB
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
{
"name": "osc",
"main": "src/platforms/osc-node.js",
"version": "2.0.0",
"description": "A JavaScript Open Sound Control (OSC) library that works in Node.js and the browser.",
"author": "Colin Clark",
"homepage": "https://github.com/colinbdclark/osc.js",
"repository": {
"type": "git",
"url": "git://github.com/colinbdclark/osc.js.git"
},
"bugs": "https://github.com/colinbdclark/osc.js/issues",
"license": "(MIT OR GPL-2.0)",
"keywords": [
"Open Sound Control",
"OSC",
"sound",
"audio",
"music",
"Web Socket",
"UDP",
"serial",
"TCP"
],
"readmeFilename": "README.md",
"devDependencies": {
"infusion": "2.0.0-dev.20151007T134312Z.8c33cd4",
"dedupe-infusion": "1.0.0",
"jqUnit": "git://github.com/fluid-project/node-jqUnit.git",
"grunt": "~0.4.2",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-uglify": "~0.3.2",
"grunt-contrib-clean": "~0.4.1",
"grunt-contrib-jshint": "~0.8.0"
},
"dependencies": {
"long": "2.4.0",
"serialport": "2.0.1",
"slip": "1.0.2",
"ws": "0.8.0"
},
"scripts": {
"dedupe-infusion": "node -e \"require('dedupe-infusion')();\"",
"test": "npm run dedupe-infusion && node tests/node-all-tests.js"
}
}