forked from esonderegger/web-audio-peak-meter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "web-audio-peak-meter",
"version": "2.0.1",
"description": "A customizable peak meter using the web audio API",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"test": "jest",
"start": "rollup --config rollup.config.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/esonderegger/web-audio-peak-meter.git"
},
"keywords": [
"web",
"audio",
"peak",
"meter",
"ppm"
],
"author": "Evan Sonderegger",
"license": "MIT",
"bugs": {
"url": "https://github.com/esonderegger/web-audio-peak-meter/issues"
},
"homepage": "https://github.com/esonderegger/web-audio-peak-meter#readme",
"devDependencies": {
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"rollup": "^2.36.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2"
}
}