-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1.42 KB
/
package.json
File metadata and controls
25 lines (25 loc) · 1.42 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
{
"private": true,
"scripts": {
"build": "spago build -p abc-scores",
"test": "spago test -p abc-scores",
"display-tests": "spago bundle --package display-tests --outfile dist/display-tests.js --bundle-type app --platform browser",
"full-tune": "spago bundle --package full-tune --outfile dist/full-tune.js --bundle-type app --platform browser",
"beaming": "spago bundle --package beaming --outfile dist/beaming.js --bundle-type app --platform browser",
"align-staves": "spago bundle --package align-staves --outfile dist/align-staves.js --bundle-type app --platform browser",
"thumbnail": "spago bundle --package thumbnail --outfile dist/thumbnail.js --bundle-type app --platform browser",
"slurs": "spago bundle --package slurs --outfile dist/slurs.js --bundle-type app --platform browser",
"chord-symbols": "spago bundle --package chord-symbols --outfile dist/chord-symbols.js --bundle-type app --platform browser",
"clefs": "spago bundle --package clefs --outfile dist/clefs.js --bundle-type app --platform browser",
"scaling": "spago bundle --package scaling --outfile dist/scaling.js --bundle-type app --platform browser",
"bugs": "spago bundle --package bugs --outfile dist/bugs.js --bundle-type app --platform browser",
"debug": "spago run --package debug"
},
"devDependencies": {
"purescript": "^0.15.15",
"spago": "0.93.44"
},
"dependencies": {
"esbuild": "^0.25.9"
}
}