forked from feross/timidity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.52 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "timidity",
"description": "Play MIDI files in the browser w/ Web Audio, WebAssembly, and libtimidity",
"version": "1.3.0",
"author": {
"name": "Feross Aboukhadijeh",
"email": "[email protected]",
"url": "https://feross.org"
},
"browserify": {
"transform": [
"brfs"
]
},
"bugs": {
"url": "https://github.com/feross/timidity/issues"
},
"dependencies": {
"brfs": "^2.0.2",
"debug": "^4.1.1",
"freepats": "^1.0.1"
},
"devDependencies": {
"babel-minify": "^0.5.1",
"browserify": "^16.2.2",
"standard": "*"
},
"homepage": "https://bitmidi.com",
"keywords": [
"api",
"browser",
"libtimidity",
"mid file",
"midi",
"midi api",
"midi file",
"midi player",
"player",
"soundfont",
"timidity",
"web audio",
"webassembly"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/feross/timidity.git"
},
"scripts": {
"build": "./tools/build.sh",
"download": "./tools/download.sh",
"size": "npm run build && cat libtimidity.wasm | gzip | wc -c && browserify -r . | minify | gzip | wc -c",
"test": "standard"
},
"standard": {
"ignore": [
"libtimidity.js"
]
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
}