-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
38 lines (38 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
{
"name": "webaudio-peaks",
"version": "1.0.0",
"description": "Small library to extract peaks from an array of audio samples or an AudioBuffer from the WebAudio API.",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/naomiaro/webaudio-peaks.git"
},
"keywords": [
"webaudio",
"peaks",
"waveform",
"visualization"
],
"author": "Naomi Aro <[email protected]> (https://naomiaro.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/naomiaro/webaudio-peaks/issues"
},
"homepage": "https://github.com/naomiaro/webaudio-peaks#readme",
"devDependencies": {
"jest": "^27.0.6",
"parallel-webpack": "^2.6.0",
"prettier": "2.3.2",
"standardized-audio-context-mock": "^8.5.13",
"webpack": "^5.47.0",
"webpack-cli": "^4.7.2"
},
"scripts": {
"build": "webpack",
"preversion": "npm test",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags",
"test": "jest"
}
}