-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.42 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
40
41
42
{
"name": "music-theory-kit",
"version": "1.0.0",
"description": "",
"main": "dist/music-theory-tool.js",
"bin": {
"music-theory-kit": "dist/music-theory-tool.js"
},
"type": "module",
"scripts": {
"start": "ts-node --esm src/music-theory-tool.ts",
"build": "tsc",
"start:dist": "tsc && node dist/music-theory-tool.js",
"examples": "npm-run-all example:*",
"example:scale": "npx ts-node --esm src/music-theory-tool.ts scale A minor",
"example:transpose": "npx ts-node --esm src/music-theory-tool.ts transpose A E Am^F 'G' F C",
"example:map-scale": "npx ts-node --esm src/music-theory-tool.ts map_guitar A minor",
"example:map-chord": "npx ts-node --esm src/music-theory-tool.ts map_guitar Bm",
"example:find-relative-scales": "npx ts-node --esm src/music-theory-tool.ts relative_scales B minor",
"install-local": "tsc && npm link",
"example-installed-global": "npm run build && music-theory-kit scale A minor",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "",
"devDependencies": {
"@types/argparse": "^2.0.10",
"@types/d3": "^7.4.0",
"@types/jsdom": "^20.0.1",
"@types/open": "^6.2.1",
"@types/typescript": "^2.0.0",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"argparse": "^2.0.1",
"d3": "^7.8.0",
"jsdom": "^21.0.0",
"open": "^8.4.0"
}
}