forked from cuthbertLab/music21j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.45 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "music21j",
"version": "0.12.21",
"description": "A toolkit for computer-aided musicology, Javascript version",
"main": "releases/music21.debug.js",
"typings": "releases/main.d.ts",
"files": [
".editorconfig",
".eslintignore",
".eslintrc.json",
".gitignore",
".jshintrc",
"Gruntfile.js",
"tsconfig.json",
"/css",
"/releases",
"/scripts",
"/src",
"/testHTML",
"/tests",
"/webResources"
],
"dependencies": {
"jquery": "^3.6.0",
"jsonpickle": "^1.1.2",
"midicube": "^0.6.1",
"vexflow": "4.0.3"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/eslint-parser": "7.17.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/plugin-transform-object-assign": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"@types/jquery": "^3.5.6",
"@types/qunit": "^2.11.3",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"ajv": "^7.2.4",
"babel-loader": "^8.2.3",
"core-js": "^3.16.1",
"css-loader": "^5.2.7",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.0",
"eslint-webpack-plugin": "^2.5.4",
"exports-loader": "^3.1.0",
"glob": "^7.2.0",
"grunt": "^1.4.1",
"grunt-bump": "0.8.0",
"grunt-cli": "^1.4.3",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-qunit": "^5.1.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^24.0.0",
"grunt-git": "^1.1.1",
"grunt-jsdoc": "^2.4.1",
"grunt-webpack": "^4.0.3",
"jsdoc": "^3.6.7",
"npm-check-updates": "^16.0.6",
"qunit": "^2.16.0",
"style-loader": "^3.3.1",
"ts-loader": "^8.3.0",
"typescript": "^4.7.4",
"webpack": "^5.69.1"
},
"directories": {
"test": "tests"
},
"scripts": {
"prepublishOnly": "cp -rp build/* releases/",
"postinstall": "sh scripts/postinstall.bash",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/cuthbertLab/music21j.git"
},
"keywords": [
"music",
"theory",
"musicology",
"notation"
],
"author": {
"name": "Michael Scott Asato Cuthbert",
"email": "[email protected]",
"url": "http://www.trecento.com"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/cuthbertLab/music21j/issues"
}
}