-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
41 lines (41 loc) · 997 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
41
{
"name": "teoria",
"version": "2.5.0",
"description": "Music theory for JavaScript",
"homepage": "http://saebekassebil.github.com/teoria",
"keywords": [
"music",
"theory",
"jazz",
"classical",
"chord"
],
"main": "./index.js",
"author": {
"name": "Jakob Miland <saebekassebil>",
"email": "[email protected]",
"url": "https://github.com/saebekassebil"
},
"repository": {
"type": "git",
"url": "https://github.com/saebekassebil/teoria"
},
"license": "MIT",
"scripts": {
"test": "vows --dot-matric test/*",
"lint": "jshint index.js lib/",
"bundle": "browserify index.js --standalone teoria > teoria.js",
"build": "npm run lint && npm test && npm run bundle"
},
"devDependencies": {
"jshint": ">=0.9.0",
"vows": ">= 0.6.0"
},
"dependencies": {
"daccord": "^1.0.1",
"helmholtz": "^2.0.1",
"interval-coords": "^1.1.1",
"pitch-fq": "^1.0.0",
"scientific-notation": "^1.0.2"
}
}