-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.12 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
54
55
56
{
"name": "fretboard",
"version": "0.0.1",
"description": "Programatically handle the notes of fretted string instruments, like the guitar",
"main": "lib/index.js",
"scripts": {
"test": "xo && mocha test"
},
"author": "Robert Pirtle",
"license": "MIT",
"xo": {
"esnext": true,
"space": true,
"overrides": [
{
"files": "test/**",
"env": "mocha",
"rules": {
"import/no-unassigned-import": 0,
"padded-blocks": 0,
"max-nested-callbacks": 0
}
}
]
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0",
"xo": "^0.17.1"
},
"directories": {
"test": "test"
},
"dependencies": {
"chai": "^3.5.0",
"xo": "^0.17.1"
},
"repository": {
"type": "git",
"url": "git://github.com/PirtleShell/fretboard.git"
},
"keywords": [
"instrument",
"tuning",
"music",
"frets",
"tune",
"guitar",
"stringed",
"instruments"
],
"bugs": {
"url": "https://github.com/PirtleShell/fretboard/issues"
},
"homepage": "https://github.com/PirtleShell/fretboard#readme"
}