-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 736 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 736 Bytes
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
{
"name": "midiator",
"version": "1.0.3",
"description": "Control your friends' MIDI keyboards through websockets!",
"main": "index.js",
"repository": "https://github.com/valtyr/midiator",
"author": "Valtýr Örn Kjartansson",
"license": "MIT",
"devDependencies": {
"eslint": "^4.18.2"
},
"scripts": {
"lint": "eslint ."
},
"dependencies": {
"easymidi": "^0.0.4",
"find-free-port": "^1.2.0",
"inquirer": "^5.1.0",
"ngrok": "^3.0.0",
"node-fetch": "^2.1.1",
"ora": "^2.0.0",
"readable-id": "https://github.com/valtyr/readable-id.git",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4"
},
"bin": {
"midiator": "./bin/midiator.js"
},
"preferGlobal": true
}