-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.11 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
{
"name": "fretwork",
"version": "1.0.0",
"private": true,
"description": "A playable guitar in one HTML file, built from six coupled digital waveguides. No samples.",
"license": "MIT",
"author": "KernelSpecter",
"homepage": "https://kernelspecter.github.io/fretwork/",
"repository": {
"type": "git",
"url": "git+https://github.com/KernelSpecter/fretwork.git"
},
"type": "module",
"scripts": {
"test": "node dev/verify.mjs && node dev/check-data.mjs && node dev/song.mjs && node dev/import.mjs && node dev/tab.mjs && node dev/listen.mjs && node dev/keys.mjs && node dev/qa.mjs",
"test:dsp": "node dev/verify.mjs",
"test:data": "node dev/check-data.mjs",
"test:keys": "node dev/keys.mjs",
"test:song": "node dev/song.mjs",
"test:import": "node dev/import.mjs",
"test:tab": "node dev/tab.mjs",
"test:listen": "node dev/listen.mjs",
"test:ui": "node dev/qa.mjs",
"wav": "node dev/verify.mjs --wav",
"shots": "node dev/shoot.mjs && node dev/shoot.mjs --portrait",
"docs": "node dev/docshots.mjs"
},
"devDependencies": {
"playwright": "^1.63.0"
}
}