-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 812 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 812 Bytes
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
{
"name": "impulse-response",
"version": "0.0.3",
"author": "Seth Nickell <snickell+npm@gmail.com>",
"description": "Measure an impulse response using webaudio",
"contributors": [],
"keywords": [],
"main": "lib/impulse-response.js",
"repository": {
"type": "git",
"url": "https://github.com/snickell/impulse-response.git"
},
"license": "MIT",
"scripts": {
"prepublish": "node_modules/babel-cli/bin/babel.js src --out-dir lib"
},
"babel": {
"presets": [
"es2015"
]
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-preset-es2015": "^6.18.0"
},
"dependencies": {
"audiobuffer-to-wav": "^1.0.0",
"browserify": "^5.13.1",
"extend": "^3.0.0",
"recorderjs": "^1.0.1",
"workerify": "^0.3.0"
}
}