-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.12 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "mp3-recorder.js",
"version": "1.0.0",
"description": "real-time web mp3 recorder js",
"main": "/dist/mp3Recorder.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benvirus/mp3Recorder.js.git"
},
"keywords": [
"mp3",
"recorder",
"web",
"real-time",
"js"
],
"author": "benvirus",
"license": "ISC",
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"gulp": "^3.9.1",
"gulp-load-plugins": "^1.4.0",
"lame": "^1.2.4",
"lamejs": "^1.1.0",
"node-notifier": "^5.0.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"webworkify": "^1.4.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"babelify": {
"presets": [
"es2015"
]
},
"babel": {
"presets": [
"es2015"
],
"compact": true
},
"bugs": {
"url": "https://github.com/benvirus/mp3Recorder.js/issues"
},
"homepage": "https://github.com/benvirus/mp3Recorder.js#readme"
}