-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
36 lines (36 loc) · 980 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
{
"name": "guitar",
"version": "0.1.0",
"description": "Web app to play/record guitar tabs, and learn scales",
"scripts": {
"test": "cspell-cli lint .",
"build": "coffee -o built/ -c src/",
"watch": "coffee -o built/ -cw src/",
"start": "npx live-server",
"predeploy": "npm run build && npm test && node predeploy-check.js",
"deploy": "gh-pages --src \"{index.html,*favicon*,{built,lib,tabs,impulses}/**/*}\" --dist ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/1j01/guitar.git"
},
"keywords": [
"fretboard",
"scales",
"music",
"guitar",
"web-app",
"tabs",
"tablature"
],
"author": "Isaiah Odhner <[email protected]> (https://isaiahodhner.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/1j01/guitar/issues"
},
"homepage": "https://github.com/1j01/guitar#readme",
"devDependencies": {
"coffeescript": "^2.7.0",
"gh-pages": "^5.0.0"
}
}