-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 817 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 817 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
31
32
33
34
35
36
37
38
{
"name": "rtpmidi",
"version": "1.0.0",
"author": "Jascha Dachtera <jascha.dachtera@gmail.com>",
"description": "A node js implementation of Apples Network Midi Protocol.",
"main": "./index.js",
"repository": {
"type": "git",
"url": "http://github.com/jdachtera/node-rtpmidi.git"
},
"dependencies": {
"midi-common": "*",
"winston": "^3.2.1"
},
"optionalDependencies": {
"avahi_pub": "TheThingSystem/node_avahi_pub",
"mdns": "2.3.3"
},
"keywords": [
"midi",
"rtpmidi",
"coremidi",
"network",
"music"
],
"license": "MIT",
"engines": {
"node": ">=0.4.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3"
},
"scripts": {
"lint": "eslint src/"
}
}