-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 969 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
38
39
40
41
42
43
44
45
46
47
{
"name": "nepenthe",
"version": "0.0.2",
"description": "Lilypond preprocessor",
"main": "bin/index.js",
"homepage": "https://tinpan-io.github.io/nepenthe/",
"repository": {
"type": "git",
"url": "git+https://github.com/tinpan-io/nepenthe.git"
},
"bugs": {
"url": "https://github.com/tinpan-io/nepenthe/issues"
},
"author": "Andy Chase <[email protected]>",
"license": "MIT",
"keywords": [
"Lilypond",
"music",
"notation",
"tablature",
"sheet",
"music"
],
"dependencies": {
"argparse": "^2.0.1",
"handlebars": "^4.7.7",
"yaml-front-matter": "^4.1.1"
},
"bin": {
"nepenthe": "bin/index.js"
},
"devDependencies": {
"eslint": "^7.27.0",
"jest": "^26.6.3",
"jsdoc": "^3.6.7"
},
"scripts": {
"test": "jest",
"docs": "./node_modules/.bin/jsdoc -R README.md -r -d docs bin lib"
},
"jest": {
"coverageReporters": [
"json",
"html"
]
}
}