-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 894 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": "chord-fingering",
"version": "1.0.2",
"description": "Calculate possible fingerings for a given chord and string tuning.",
"main": "index.js",
"scripts": {
"test": "jest"
},
"keywords": [
"chord",
"fingering",
"fretboard",
"voicing",
"guitar",
"diagram",
"interval"
],
"author": "Adam Jagosz",
"license": "GPL-3.0-only",
"homepage": "https://github.com/hyvyys/chord-fingering#readme",
"repository": {
"type": "git",
"url": "https://github.com/hyvyys/chord-fingering.git"
},
"bugs": "https://github.com/hyvyys/chord-fingering/issues",
"devDependencies": {
"eslint": "^6.5.1",
"jest": "^24.9.0"
},
"dependencies": {
"@tonaljs/interval": "^3.2.3",
"@tonaljs/note": "^3.2.4",
"@tonaljs/tonal": "^3.2.2",
"array.prototype.flatmap": "^1.2.1",
"string.prototype.matchall": "^4.0.0"
}
}