-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
39
40
41
42
{
"name": "audio-visualizer",
"version": "1.0.0",
"description": "A plug-and-play audio visualizer",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tennisonchan/audio-visualizer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tennisonchan/audio-visualizer/issues"
},
"homepage": "https://github.com/tennisonchan/audio-visualizer#readme",
"dependencies": {
"noise-gate": "0.0.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0"
},
"scripts": {
"build": "npm run build-browser",
"build-browser": "browserify scripts.babel/*.js > scripts/bundle.js -t babelify --presets env",
"watch": "watchify scripts.babel/*.js -o scripts/bundle.js -dv",
"test": "echo \"Error: no test specified\" && exit 1"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"env"
]
}
]
]
}
}