-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.03 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": "audiosurfer",
"version": "2.0.3",
"description": "Progressive audio play by Audio, and render in canvas",
"main": "lib/audioSurfer.js",
"scripts": {
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kvsur/audioSurfer.git"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"keywords": [
"audio",
"canvas",
"fetch",
"render",
"progressive"
],
"author": "kvsur",
"license": "MIT",
"bugs": {
"url": "https://github.com/kvsur/audioSurfer/issues"
},
"homepage": "https://github.com/kvsur/audioSurfer#readme",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"babel-loader": "^8.0.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"abortcontroller-polyfill": "^1.3.0",
"qs": "^6.7.0",
"wave-rolling": "^1.0.19"
}
}