-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
23 lines (23 loc) · 1.34 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
{
"name": "jsfx",
"private": true,
"version": "1.0.0",
"description": "Build system for a collection of audio effects in REAPER's JSFX language.",
"main": "index.js",
"dependencies": {
"jsfx-preprocessor": "^1.0.6"
},
"devDependencies": {
"reapack": "^1.1.0",
"mdpages": "^0.0.1",
"nodemon": "^1.11.0",
"jsfx-preprocessor": "^1.0.2"
},
"scripts": {
"build": "node node_modules/jsfx-preprocessor \"Ripple.txt\" \"Ripple.jsfx\" && node node_modules/jsfx-preprocessor \"Humonica.txt\" \"Humonica.jsfx\" && node node_modules/jsfx-preprocessor \"Pulsar.txt\" \"Pulsar.jsfx\" && node node_modules/jsfx-preprocessor \"Warble.txt\" \"Warble.jsfx\" && node node_modules/jsfx-preprocessor \"filter-utils.txt\" \"filter-utils.jsfx-inc\" && node node_modules/jsfx-preprocessor \"synth-framework.txt\" \"synth-framework.jsfx-inc\" && node node_modules/jsfx-preprocessor \"synth-framework-obj.txt\" \"synth-framework-obj.jsfx-inc\" && node node_modules/jsfx-preprocessor \"delay-utils.txt\" \"delay-utils.jsfx-inc\" && node node_modules/jsfx-preprocessor \"Hammer And Chord.txt\" \"Hammer And Chord.jsfx\"",
"install": "node node_modules/reapack install",
"nodemon-build": "nodemon -e txt --exec npm run build",
"nodemon-install": "nodemon -e jsfx,jsfx-inc --exec npm run install"
},
"author": "Geraint Luff <[email protected]>"
}