-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
83 lines (83 loc) · 2.29 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
{
"name": "music21j",
"version": "0.16.6",
"description": "A toolkit for computer-aided musicology, Javascript version",
"main": "releases/music21.debug.js",
"typings": "releases/src/main.d.ts",
"files": [
"/css",
"/releases",
"/scripts",
"/webResources"
],
"dependencies": {
"jsonpickle": "^1.1.2",
"midicube": "^0.6.1",
"vexflow": "^4.2.3"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/eslint-parser": "7.22.15",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-transform-object-assign": "^7.18.6",
"@babel/preset-env": "^7.22.20",
"@types/jquery": "^3.5.19",
"@types/qunit": "^2.19.3",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"ajv": "^8.11.2",
"babel-loader": "^9.1.3",
"browserslist": "^4.23.0",
"core-js": "^3.32.2",
"css-loader": "^6.7.2",
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-webpack-plugin": "^4.0.1",
"exports-loader": "^4.0.0",
"glob": "^10.3.4",
"grunt": "^1.5.3",
"grunt-bump": "0.8.0",
"grunt-cli": "^1.4.3",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-qunit": "6.2.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^24.3.0",
"grunt-git": "^1.1.1",
"grunt-webpack": "^6.0.0",
"npm-check-updates": "^16.14.3",
"qunit": "^2.19.3",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2"
},
"directories": {
"test": "tests"
},
"scripts": {
"prepublishOnly": "rm -rf releases; cp -rp build/ releases/; rm -rf releases/tests",
"postinstall": "sh scripts/postinstall.bash",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuthbertLab/music21j.git"
},
"keywords": [
"music",
"theory",
"musicology",
"notation"
],
"author": {
"name": "Michael Scott Asato Cuthbert",
"email": "[email protected]",
"url": "https://www.trecento.com"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/cuthbertLab/music21j/issues"
}
}