-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 2.1 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
{
"name": "sema-engine",
"version": "0.1.4",
"description": "Module containing Sema's signal engine and compiler for a live coding language ecosystem",
"repository": {
"type": "git",
"url": "https://github.com/frantic0/sema-engine.git"
},
"author": "Francisco Bernardo <[email protected]>",
"contributors": [
"Chris Kiefer <[email protected]> (http://luuma.net)",
"Thor Magnusson <[email protected]> (http://www.ixi-audio.net)"
],
"license": "MIT",
"keywords": [
"Web Audio",
"Web Audio API",
"Synthesis",
"Playback",
"DSP",
"Signal Processing",
"Interactive Music"
],
"module": "index.mjs",
"main": "index.js",
"engines": {
"node": ">=14.4.0 <15"
},
"scripts": {
"build": "rollup -c --environment BUILD:development",
"dev": "rollup -c -w",
"pretest": "cpx './test/assets/langs/*' './test/fixtures/lang/'",
"test": "mocha --recursive --require esm",
"coverage": "nyc npm run test",
"clean": "rm -rf maxi-processor.js maximilian.transpile.js sema-engine.*",
"clean-all": "rm -rf .cache dist node_modules package-lock.json"
},
"dependencies": {
"nearley": "^2.20.1",
"ringbuf.js": "^0.1.0"
},
"devDependencies": {
"livereload": "git+https://github.com/frantic0/node-livereload.git",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-wasm": "^5.1.2",
"chai": "^4.3.4",
"cpx": "^1.5.0",
"eslint": "^7.27.0",
"eslint-config-google": "^0.14.0",
"esm": "^3.2.25",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"rollup": "^2.50.5",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-livereload": "git+https://github.com/frantic0/rollup-plugin-livereload.git",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-serve-proxy": "^1.1.4",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-web-worker-loader": "^1.6.1"
},
"files": [
"maxi-processor.js",
"package.json",
"index.js",
"index.js.map",
"index.min.js",
"index.min.js.map",
"index.mjs",
"index.mjs.map"
],
"directories": {
"src": "src/",
"doc": "docs/"
}
}