-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.58 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.58 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
42
43
44
45
46
47
48
{
"name": "@werckmeister/midiplayer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "rm -rf dist && rm -rf out && npm run build && npm run deployDefs && cp package.json dist && cp README.md dist",
"deployDefs": "tsc && cp out/WerckmeisterMidiPlayer.d.ts dist/index.d.ts && cp out/IMidiEvent.d.ts dist",
"build": "parcel build --no-source-maps src/WerckmeisterMidiPlayer.ts -o index.js",
"dev": "parcel test.html"
},
"staticFiles": {
"staticPath": [
"./node_modules/@werckmeister/sfcompose",
"./node_modules/js-synthesizer/externals/libfluidsynth-2.0.2.js"
],
"watcherGlob": "*.wasm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/werckme/midiplayer.git"
},
"author": "Samba Godschynski",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/werckme/midiplayer/issues"
},
"homepage": "https://github.com/werckme/midiplayer#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-typescript": "^7.10.4",
"@types/lodash": "^4.14.165",
"@werckmeister/sfcompose": "1.0.0-dev-25",
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"js-synthbuild": "file:jssynthbuild",
"js-synthesizer": "^1.7.0",
"lodash": "^4.17.20",
"midifile": "^2.0.0",
"parcel": "1.12.3",
"parcel-plugin-static-files-copy": "2.5.0",
"typescript": "^4.1.3"
},
"dependencies": {}
}