-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "arduino-tablature",
"version": "1.1.0-rc.0",
"description": "A web script to get a guitar tablature and make it into Arduino Tone Function form.",
"main": "index.js",
"bin": {
"arduino-tablature": "./index.js"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"express": "^4.16.2",
"fs": "0.0.1-security",
"mkdirp": "^0.5.1",
"pug": "^2.0.0-rc.4",
"request": "^2.83.0",
"require": "^2.4.20",
"yargs": "^11.0.0"
},
"devDependencies": {
"mocha": "^5.2.0"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThiagoAugustoSM/arduino-tablature.git"
},
"keywords": [
"arduino",
"tablature",
"guitar"
],
"author": "thiagoaugustosm",
"contributors": [
{
"name": "Otacilio Maia",
"email": "[email protected]",
"url": "http://otaciliomaia.com/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ThiagoAugustoSM/arduino-tablature/issues"
},
"homepage": "https://thiagoaugustosm.github.io/arduino-tablature/"
}