forked from feross/timidity
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.13 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": "phaser-timidity-plugin",
"description": "self contained midi player with easyish patch editing, for phaser, forked from feross's wasm timidity",
"version": "0.1.1",
"author": {
"name": "Feross Aboukhadijeh (with mike russo)",
"email": "[email protected]",
"url": "https://feross.org"
},
"bugs": {
"url": "https://github.com/feross/timidity/issues"
},
"types": "MIDIPlayer.d.ts",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.16",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-replace": "^2.4.1",
"babel-minify": "^0.5.1",
"babel-plugin-static-fs": "^3.0.0",
"debug": "^4.1.1",
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"gravisPats": "https://github.com/miker2049/gravisPats",
"native-url": "^0.3.4",
"rollup": "^2.39.1",
"rollup-plugin-terser": "^7.0.2",
"url-parse": "^1.5.1"
},
"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": "dist/player-bundle.js",
"repository": {
"type": "git",
"url": "git://github.com/feross/timidity.git"
},
"scripts": {
"buildLib": "./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",
"prepTesterFolder": "cp node_modules/gravisPats test/ && cp dist/*-bundle.js test/",
"bundle": "rollup -c rollup.bundle.js",
"build": "npm run bundle"
},
"standard": {
"ignore": [
"libtimidity.js"
]
}
}