-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.33 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
48
{
"name": "@soundcut/decode-audio-data-fast",
"version": "2.0.1",
"description": "Decode audio data asynchronously, in the browser using BaseAudioContext.decodeAudioData(), as fast as possible.",
"unpkg": "dist/decode-audio-data-fast.standalone.umd.min.js",
"browser": "dist/decode-audio-data-fast.standalone.umd.js",
"module": "dist/decode-audio-data-fast.esm.js",
"main": "dist/decode-audio-data-fast.cjs.js",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean; rollup -c",
"build:production": "npm run clean; NODE_ENV=production rollup -c",
"test": "npm run build:production; cd test; npm t"
},
"author": {
"name": "Timothée 'Tim' Pillard",
"email": "tim@tpillard.fr",
"url": "https://twitter.com/tpillard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soundcut/decode-audio-data-fast.git"
},
"bugs": {
"url": "https://github.com/soundcut/decode-audio-data-fast/issues"
},
"keywords": [
"decode",
"audio",
"data",
"async",
"chunk",
"fast"
],
"license": "ISC",
"dependencies": {
"mp3-parser": "^0.3.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"rollup": "^2.26.5",
"rollup-plugin-terser": "^7.0.0"
}
}