-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 817 Bytes
/
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
{
"name": "synth-javascript",
"version": "1.2.11",
"description": "A browser-based audio programming language for music composition and audio synthesis.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"watch": "watchify src/index.js -o dist/bundle.js -v",
"test": "mocha",
"build": "browserify ./src/index.js > ./dist/bundle.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lefthandhacker/SynthJS.git"
},
"author": "Brandon Mailhiot",
"license": "MIT",
"bugs": {
"url": "https://github.com/lefthandhacker/SynthJS/issues"
},
"homepage": "https://github.com/lefthandhacker/SynthJS#readme",
"devDependencies": {
"browserify": "^14.4.0",
"chai": "^3.5.0",
"mocha": "^3.1.2",
"web-audio-api": "^0.2.2"
}
}