-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 900 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": "abc-notation-transposition",
"version": "1.0.5",
"description": "A robust utility for transposing ABC Notation by half steps.",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --collectCoverage --",
"coverage:badge": "coverage-badge-creator"
},
"keywords": [
"abc",
"music",
"notation",
"transpose",
"transposition"
],
"author": "dvorakjt",
"homepage": "https://github.com/dvorakjt/abc-notation-transposition#readme",
"bugs": "https://github.com/dvorakjt/abc-notation-transposition/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dvorakjt/abc-notation-transposition.git"
},
"devDependencies": {
"coverage-badge-creator": "^1.0.14",
"jest": "^29.2.2"
},
"jest": {
"coverageReporters": [
"json-summary",
"text",
"lcov"
]
}
}