-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
58 lines (58 loc) · 1.12 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
56
57
58
{
"name": "midi",
"version": "2.0.0",
"scripts": {
"test": "mocha test/unit/*.js && node test/virtual-loopback-test-automated.js"
},
"main": "midi.js",
"description": "MIDI hardware IO",
"author": {
"name": "Justin Latimer",
"email": "[email protected]",
"url": "http://www.justinlatimer.com/"
},
"contributors": [
{
"name": "Elijah Insua",
"email": "[email protected]"
},
{
"name": "Andrew Morton",
"email": "[email protected]"
},
{
"name": "Luc Deschenaux",
"email": "[email protected]"
},
{
"name": "Michael Alyn Miller",
"email": "[email protected]"
},
{
"name": "Hugo Hromic"
}
],
"license": "MIT",
"engines": {
"node": ">=10"
},
"dependencies": {
"bindings": "~1.5.0",
"nan": "^2.14.2"
},
"devDependencies": {
"mocha": "^9.0.0",
"should": "^13.2.3"
},
"repository": {
"type": "git",
"url": "https://github.com/justinlatimer/node-midi.git"
},
"files": [
"midi.js",
"binding.gyp",
"src/",
"test/",
"vendor/"
]
}