-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.17 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "traste",
"description": "A library for rendering guitar and ukulele fretboards as SVG elements.",
"version": "0.3.0",
"author": "Ramiro Gómez (https://ramiro.org/)",
"bugs": {
"url": "https://github.com/yaph/traste/issues",
"email": "[email protected]"
},
"dependencies": {
"@tonaljs/tonal": "^4.6.5",
"d3-selection": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"rollup": "^2.56.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2"
},
"files": [
"src/**/*",
"dist/**/*"
],
"homepage": "https://github.com/yaph/traste",
"keywords": [
"fingerboard",
"fret",
"fretboard",
"guitar",
"instrument",
"music",
"svg",
"uke",
"ukulele"
],
"license": "MIT",
"main": "dist/fretboard.js",
"module": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/yaph/traste.git"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"serve": "rollup -c rollup-serve.config.js -w"
},
"directories": {
"example": "examples"
}
}