-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "chromatone-helper",
"description": "Helps learning to play and compose for the musical instrument Chromatone",
"version": "1.0.0",
"author": "Tommy Helm",
"repository": {
"type": "git"
},
"main": "main.js",
"keywords": [
"Chromatone",
"music",
"theory",
"composing",
"instrument",
"harmony",
"scale",
"chord",
"midi",
"learn",
"teach"
],
"dependencies": {
"browserify": "^17.0.0",
"midi-writer-js": "^2.1.4",
"webaudio-tinysynth": "1.1.3"
},
"devDependencies": {
"patch-package": "^6.5.1",
"watchify": "^4.0.0"
},
"scripts": {
"build": "mkdir -p dist && browserify src/main.js > dist/bundle.js && ./build/build-combined.sh",
"watch": "mkdir -p dist && watchify src/main.js -o dist/bundle.js -v",
"build_watch": "mkdir -p dist && watchify src/main.js -o \"browserify src/main.js > dist/bundle.js && ./build/build-combined.sh\" -v",
"deploy": "mkdir -p dist && browserify src/main.js > dist/bundle.js && ./build/build-combined.sh && ./build/deploy-branch-on-github-pages.sh",
"postinstall": "patch-package"
}
}