-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 954 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "openmusic-drum-machine",
"version": "1.0.0",
"description": "A Web Audio drum machine",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp build",
"watch": "gulp watch"
},
"repository": {
"type": "git",
"url": "https://github.com/openmusic/drum-machine"
},
"keywords": [
"web audio"
],
"author": "sole",
"license": "Apache 2",
"bugs": {
"url": "https://github.com/openmusic/drum-machine/issues"
},
"homepage": "https://github.com/openmusic/drum-machine",
"dependencies": {
"brfs": "^1.4.0",
"es6-promise": "^2.1.1",
"openmusic-sample-player": "^1.4.3",
"setter-getterify": "^1.0.0"
},
"browserify": {
"transform": [
"brfs"
]
},
"devDependencies": {
"gulp": "^3.8.9",
"openmusic-demo-gulp-tasks": "^1.5.0",
"openmusic-oscilloscope": "^1.0.0",
"openmusic-slider": "^2.0.0"
}
}