-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 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
{
"name": "modulator-synth",
"version": "2.0.3",
"description": "Modular Synth using Web Audio",
"main": "web/js/synthlib.js",
"types": "index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --env.target=PROD",
"dev": "webpack --env.target=DEV",
"dev:watch": "webpack --env.target=DEV --watch",
"watch": "npm run serve",
"serve": "webpack-dev-server --env.target=DEV --content-base web/",
"publish:html": "cp *.html ../lcrespom.github.io/synth",
"publish:css": "cp -R css ../lcrespom.github.io/synth",
"publish:js": "cp -R js ../lcrespom.github.io/synth",
"publish:img": "cp -R img ../lcrespom.github.io/synth",
"publish": "npm run publish:html && npm run publish:css && npm run publish:js && npm run publish:img"
},
"keywords": [
"web audio",
"synthesizer",
"synth",
"modular synth"
],
"repository": {
"type": "git",
"url": "https://github.com/lcrespom/Modulator.git"
},
"author": "Luis Crespo",
"license": "ISC",
"devDependencies": {
"@types/jquery": "^3.2.17",
"@types/jqueryui": "^1.11.37",
"http-server": "^0.10.0",
"ts-loader": "^3.2.0",
"tslint": "^5.8.0",
"typescript": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.1.4",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
},
"dependencies": {
"seedrandom": "^2.4.3"
}
}