forked from danigb/music-scale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 984 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
37
38
39
40
{
"name": "music-scale",
"version": "0.12.0",
"description": "Music scales made easy",
"main": "index.js",
"scripts": {
"test": "vows --spec test/*.js",
"docs": "docme README.md",
"dist": "browserify index.js > ./dist/music-scale.js && browserify index.js | uglifyjs > ./dist/music-scale.min.js",
"coverage": "istanbul cover test/tests.js",
"benchmarks": "node ./test/benchmark/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danigb/music-scale.git"
},
"keywords": [
"music",
"scale",
"scales",
"theory",
"harmony",
"jazz",
"midi"
],
"author": "danigb <danigb@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danigb/music-scale/issues"
},
"homepage": "https://github.com/danigb/music-scale#readme",
"devDependencies": {
"benchmark": "^1.0.0",
"vows": "^0.8.1"
},
"dependencies": {
"curry": "^1.2.0",
"music-gamut": "^0.2.1"
}
}