forked from justinlatimer/node-midi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.44 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
59
60
61
{
"name": "midi",
"version": "0.9.7",
"scripts": {
"preinstall": "npm install node-pre-gyp",
"install": "node-pre-gyp install --fallback-to-build",
"test": "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"
}
],
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"bindings": "~1.2.1",
"nan": "^2.11.0",
"node-pre-gyp": "^0.6.39"
},
"binary": {
"module_name": "midi",
"module_path": "./lib/binding/{configuration}/{node_abi}-{platform}-{arch}/",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://github.com/aumhaa/node-midi/releases/download/",
"remote_path": "{version}"
},
"devDependencies": {
"mocha": ">= 2.1.0",
"should": ">= 5.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/aumhaa/node-midi.git"
},
"license": "ISC"
}