-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "recorderjs",
"version": "0.1.0",
"description": "A plugin for recording/exporting the output of Web Audio API nodes",
"main": "lib/index.js",
"scripts": {
"build": "npm run build:lib && npm run build:browserify",
"build:lib": "babel src/ -d lib/",
"build:browserify": "browserify lib/index.js -t babelify --outfile dist/recorder.js -s Recorder",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zlokomatic/Recorderjs.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/zlokomatic/Recorderjs/issues"
},
"homepage": "https://github.com/zlokomatic/Recorderjs#readme",
"dependencies": {
"inline-worker": "^0.1.0"
},
"devDependencies": {
"babel-cli": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^12.0.1"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
}
}