forked from MTG/essentia.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.57 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
{
"name": "essentia.js",
"version": "0.1.0-dev",
"description": "JavaScript library for music/audio analysis and processing for both real-time and offline audio feature extraction, powered by 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/*",
"src/js/es6module.main.js",
"index.js",
"LICENSE.md",
"README.md",
"AUTHORS"
],
"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"
},
"dependencies": {
"esm": "3.2.25"
},
"bundledDependencies": [
"esm"
],
"devDependencies": {
"chai": "^4.2.0",
"esm": "^3.2.25",
"foodoc": "0.0.9",
"jsdoc": "^3.6.3",
"mocha": "^8.1.3",
"rollup": "^2.11.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.26.0",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MTG/essentia.js.git"
},
"keywords": [
"audio-signal-processing",
"music-information-retrieval",
"webaudio",
"audio",
"music",
"webassembly",
"emscripten",
"essentia"
],
"bugs": {
"url": "https://github.com/MTG/essentia.js/issues"
},
"publishConfig": {"registry": "https://npm.pkg.github.com/"}
}