-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 976 Bytes
/
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
{
"name": "web-midi-recording",
"version": "0.1.2",
"description": "Recording SMF(Standard MIDI File) from message by Web MIDI API",
"main": "src/index.js",
"scripts": {
"dev": "run-p dev:*",
"dev:client": "parcel ./sample/index.html",
"dev:server": "node ./dev-server/index.js",
"build": "parcel build ./src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cagpie/web-midi-recording.git"
},
"bugs": {
"url": "https://github.com/cagpie/web-midi-recording/issues"
},
"homepage": "https://github.com/cagpie/web-midi-recording#readme",
"keywords": [
"midi",
"recording",
"web-midi-api",
"smf",
"standard-midi-file"
],
"author": "cagpie <cagpie@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"express": "^4.17.1",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"babel-polyfill": "^6.26.0"
},
"dependencies": {}
}