forked from lichen-community-systems/phet-osc-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.47 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
{
"name": "phet-osc-bridge",
"version": "1.0.3",
"main": "index.js",
"bin": "./index.js",
"description": "A bridge between PhET and sound synthesis applications using Open Sound Control",
"author": "OCAD University",
"homepage": "https://github.com/fluid-studios/phet-osc-bridge",
"repository": {
"type": "git",
"url": "git://github.com/fluid-studios/phet-osc-bridge.git"
},
"bugs": "https://github.com/fluid-studios/phet-osc-bridge/issues",
"license": "BSD-3-Clause",
"keywords": [
"Open Sound Control",
"OSC",
"sonification",
"phet"
],
"readmeFilename": "README.md",
"devDependencies": {
"node-jqunit": "1.1.8",
"grunt": "1.0.4",
"eslint-config-fluid": "1.3.0",
"fluid-grunt-eslint": "18.1.2",
"grunt-jsonlint": "1.1.0",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-uglify": "4.0.1",
"testem": "2.16.0"
},
"dependencies": {
"osc": "2.3.0",
"infusion": "3.0.0-dev.20190328T144119Z.ec44dbfab",
"express": "4.16.4",
"ws": "7.0.0",
"gpii-launcher": "1.0.0-dev.20180305T114318Z.39049a4"
},
"scripts": {
"node-test": "node tests/node-all-tests.js",
"browser-test": "node_modules/.bin/testem ci --file tests/testem.json",
"test": "npm run node-test && npm run browser-test",
"prepublish": "grunt"
}
}