-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.32 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.32 KB
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
{
"name": "cxchord",
"version": "1.1.3",
"description": "Midi Chord Recognizer",
"main": "lib/cxchord.js",
"types": "lib/cxchord.d.ts",
"directories": {
"src": "src",
"build": "lib",
"example": "example",
"declarations": "declare",
"test": "test",
"lib": "lib"
},
"dependencies": {
"@types/lodash": "latest",
"@types/node": "^7.0.13",
"chart.js": "^2.1.3",
"lodash": "^4.6.1",
"moment": "^2.29.4"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.22.20",
"@types/chart.js": "^2.9.39",
"@types/jasmine": "^2.5.47",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"jasmine": "^2.99.0",
"typescript": "^5.2.2"
},
"scripts": {
"start": "electron .",
"pretest": "npm run build",
"test": "jasmine lib/CxChordSpec.js",
"build": "tsc -p tsconfig.json",
"predist": "npm run test",
"dist": "node BrowserifyBuild.js"
},
"keywords": [
"midi",
"midinote",
"chords",
"recognition",
"Bayes"
],
"author": "Claus Fjelloe-Jensen <claus.fjello@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/BernhardPaw/CxChord.git"
},
"bugs": {
"url": "https://github.com/BernhardPaw/CxChord/issues"
}
}