forked from colinbdclark/osc.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
{
"name": "osc",
"main": "src/platforms/osc-node.js",
"version": "3.0.0",
"private": true,
"description": "A JavaScript Open Sound Control (OSC) library. Forked from https://github.com/colinbdclark/osc.js",
"author": "Colin Clark",
"contributors": [
"Christine Williamson <[email protected]>"
],
"homepage": "https://github.com/chlorophyll/osc.js",
"repository": {
"type": "git",
"url": "git://github.com/chlorophyll/osc.js.git"
},
"bugs": "https://github.com/chlorophyll/osc.js/issues",
"license": "(MIT OR GPL-2.0)",
"keywords": [
"Open Sound Control",
"OSC",
"sound",
"audio",
"music",
"Web Socket",
"UDP",
"TCP"
],
"readmeFilename": "README.md",
"devDependencies": {
"grunt": "1.0.4",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-jshint": "2.1.0",
"grunt-contrib-uglify": "4.0.1",
"grunt-replace": "1.0.1",
"infusion": "3.0.0-dev.20190328T144119Z.ec44dbfab",
"jquery": "3.4.1",
"node-jqunit": "1.1.8",
"requirejs": "2.3.6",
"testem": "2.16.0"
},
"dependencies": {
"bufferutil": "^4.0.1",
"long": "4.0.0",
"slip": "1.0.2",
"wolfy87-eventemitter": "5.2.6",
"ws": "7.0.0"
},
"scripts": {
"test": "npm run node-test && grunt && npm run browser-test",
"node-test": "node tests/node-all-tests.js",
"browser-test": "testem ci --file tests/testem.json",
"clean-test": "rm -rf ./node_modules && npm install && npm test"
}
}