-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.15 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
{
"name": "fretboards",
"version": "0.6.0",
"description": "Display fretboards and notes on your browser",
"keywords": [
"d3",
"guitar",
"fretboard"
],
"homepage": "https://github.com/txels/fretboards",
"author": "Carles Barrobés (http://txels.barrobes.com/)",
"repository": {
"type": "git",
"url": "[email protected]:txels/fretboards.git"
},
"dependencies": {
"d3-selection": "^3.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-jest": "^29.7.0",
"babel-loader": "^9.0",
"css-loader": "^7.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"style-loader": "^4.0",
"webpack": "^5.0",
"webpack-cli": "^5.0"
},
"files": [
"assets/**",
"dist/**/*.js",
"src/**/*.js"
],
"scripts": {
"test": "jest",
"build": "webpack",
"preversion": "yarn build && yarn test"
},
"bugs": {
"url": "https://github.com/txels/fretboards/issues"
},
"main": "dist/fretboard.js",
"module": "src/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"license": "0BSD"
}