-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "oscilloscope",
"version": "1.3.0",
"description": "Waveform audio visualizer for the HTML5 canvas",
"source": "src/index.js",
"main": "dist/oscilloscope.js",
"module": "src/index.js",
"dependencies": {},
"devDependencies": {
"microbundle": "^0.12.4",
"rimraf": "^3.0.2",
"standard": "^16.0.2",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"scripts": {
"test": "standard src/*.js && standard --global Oscilloscope examples/*.js",
"clean": "rimraf dist/*",
"build": "microbundle --format=cjs",
"bundle": "webpack --entry=./dist/oscilloscope.js --devtool=source-map --output-library=Oscilloscope --output-filename=oscilloscope.min.js",
"prepare": "npm run clean && npm run build && npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathiasvr/audio-oscilloscope.git"
},
"keywords": [
"oscilloscope",
"waveform",
"visualization",
"frequency",
"AudioNode",
"MediaStream"
],
"author": "Mathias Rasmussen",
"license": "MIT",
"bugs": {
"url": "https://github.com/mathiasvr/audio-oscilloscope/issues"
},
"homepage": "https://github.com/mathiasvr/audio-oscilloscope#readme",
"directories": {
"example": "examples"
},
"files": [
"dist"
]
}