-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.5 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "edo.js",
"version": "1.3.80",
"type": "module",
"description": "A set of functions for manipulating musical pitches within a given EDO",
"main": "index.js",
"browser": {
"buffer": false
},
"scripts": {
"test": "mocha",
"build": "rollup --config",
"docs": "jsdoc edo.js -c jsdoc.conf.json -r"
},
"files": [
"dist/*",
"docs/*",
"libs/*",
"test/*",
"CONTRIBUTING.md",
"edo.js",
"index.js",
"jsdoc.conf.json",
"LICENSE",
"package.json",
"paper.bib",
"paper.md",
"README.md"
],
"keywords": [
"music",
"music theory",
"musicology",
"set theory",
"microtonal",
"equal divisions of the octave"
],
"author": "Michael Seltenreich <[email protected]> (http://www.michaelseltenreich.com/)",
"license": "ISC",
"devDependencies": {
"chai": "^4.3.4",
"clean-jsdoc-theme": "^2.2.15",
"jsdoc": "^3.6.7",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"rollup": "^2.60.2",
"rollup-plugin-terser": "^7.0.2",
"swagger-jsdoc": "^4.0.0",
"tui-jsdoc-template": "^1.2.2"
},
"dependencies": {
"csv-parser": "^2.3.3",
"csv-writer": "^1.6.0",
"fs": "0.0.1-security",
"midi-parser-js": "^4.0.4",
"statly": "^0.0.1",
"xml2js": "^0.4.23"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichaelSel/edoJS.git"
},
"bugs": {
"url": "https://github.com/MichaelSel/edoJS/issues"
},
"homepage": "https://github.com/MichaelSel/edoJS#readme"
}