@goplayerjuggler/abc-tools 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -7
- package/src/contour-sort.js +402 -384
- package/src/incipit.js +3 -0
- package/src/parser.js +1004 -996
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goplayerjuggler/abc-tools",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "sorting algorithm and implementation for ABC tunes; plus other tools for parsing and manipulating ABC tunes",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -12,15 +12,16 @@
|
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"abc",
|
|
15
|
-
"
|
|
15
|
+
"folk",
|
|
16
|
+
"irish",
|
|
16
17
|
"melody",
|
|
17
|
-
"sorting",
|
|
18
|
-
"parsing",
|
|
19
18
|
"modal",
|
|
20
|
-
"
|
|
19
|
+
"music",
|
|
20
|
+
"parsing",
|
|
21
|
+
"sort",
|
|
22
|
+
"sorting",
|
|
21
23
|
"traditional",
|
|
22
|
-
"
|
|
23
|
-
"folk"
|
|
24
|
+
"tune"
|
|
24
25
|
],
|
|
25
26
|
"author": "Malcolm Schonfield",
|
|
26
27
|
"license": "GPL-3.0-or-later",
|