-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "webaudio-oscilloscope",
"version": "3.2.1",
"keywords": [
"webaudio",
"oscilloscope",
"level meter",
"audio meter",
"audio visualizer",
"web-audio",
"audio",
"html5 audio",
"getusermedia",
"analyzernode",
"audiocontext",
"audio editor",
"audio recorder",
"audio analyzer"
],
"main": "dist/index.js",
"source": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:theanam/webaudio-oscilloscope.git"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"parcel-bundler": "^1.12.4"
},
"homepage": "https://theanam.github.io/webaudio-oscilloscope/",
"scripts": {
"run-example": "parcel example/index.html -d temp-example",
"build-example": "parcel build example/index.html -d dist-example --public-url /webaudio-oscilloscope",
"build": "parcel build index.js --global _osc",
"watch": "parcel watch index.js --global _osc",
"publish-page": "yarn build-example && npx gh-pages -d dist-example && rm -rf dist-example"
},
"babel": {
"presets": [
"env"
]
}
}