-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
61 lines (61 loc) · 1.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
{
"name": "essentia.js",
"version": "0.1.3",
"description": "JavaScript library for music/audio analysis and processing, powered by Essentia WebAssembly",
"homepage": "https://mtg.github.io/essentia.js/",
"author": "Albin Correya <[email protected]> (http://mtg.upf.edu)",
"license": "AGPL-3.0",
"main": "index.js",
"files": [
"dist/*",
"index.js",
"LICENSE",
"README.md",
"AUTHORS.md",
"CHANGELOG.md"
],
"scripts": {
"gen-code": "make -f Makefile.essentiajs codegen",
"build-wasm": "make -f Makefile.essentiajs build",
"build-js-api": "rollup --config",
"build-api-docs": "./build-docs.sh",
"test": "mocha"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"devDependencies": {
"@tensorflow/tfjs-node": "^3.7.0",
"chai": "^4.2.0",
"esm": "^3.2.25",
"foodoc": "0.0.9",
"jsdoc": "^3.6.3",
"mocha": "^8.4.0",
"rollup": "^2.11.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.26.0",
"typescript": "^3.9.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MTG/essentia.js.git"
},
"keywords": [
"audio-signal-processing",
"music-information-retrieval",
"machine-learning",
"webaudio",
"music",
"webassembly",
"emscripten",
"essentia"
],
"bugs": {
"url": "https://github.com/MTG/essentia.js/issues"
},
"dependencies": {
"node-wav": "0.0.2"
}
}