-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.27 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.27 KB
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
{
"name": "@simeng/mmlplayer",
"version": "2.0.2",
"description": "Plays a preview of MML data used in various games to make ingame music",
"main": "dist/mml.js",
"module": "dist/mml.js",
"scripts": {
"build-dist": "babel src/mml.js -o dist/mml.js",
"build-example": "npm run fetch-soundfont && webpack-cli",
"watch-example": "webpack-cli --watch",
"fetch-soundfont": "test -f example/soundfont/acoustic_grand_piano-ogg.js || wget -O example/soundfont/acoustic_grand_piano-ogg.js https://github.com/mudcube/MIDI.js/blob/master/examples/soundfont/acoustic_grand_piano-ogg.js?raw=true",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simeng/mmlplayer.git"
},
"keywords": [
"mml",
"player",
"music",
"format"
],
"author": "Simen Graaten <simeng@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/simeng/mmlplayer/issues"
},
"homepage": "https://github.com/simeng/mmlplayer#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-loader": "^8.0.6",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"midi.js": "^0.3.1"
}
}