-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 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
48
49
50
51
52
{
"name": "@aurally/audio-loader",
"version": "1.0.5",
"description": "play songs while fetching data, with visualization",
"main": "dist/index.js",
"scripts": {
"start": "webpack --config webpack.config.js --watch",
"build": "tsc",
"postbuild": "standard-version",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"audio",
"loading",
"xhr",
"fetch",
"interceptor",
"audio visualization",
"loading bar",
"sound",
"playlist"
],
"repository": {
"type": "git",
"url": "https://github.com/glappsi/audio-loader"
},
"bugs": {
"url": "https://github.com/glappsi/audio-loader/issues"
},
"types": "dist/index.d.ts",
"author": "Florian Glappa <[email protected]>",
"license": "GPLv3",
"devDependencies": {
"@types/echarts": "^4.1.12",
"@types/howler": "^2.1.1",
"@types/lodash.debounce": "^4.0.6",
"standard-version": "^7.0.0",
"ts-loader": "^6.1.0",
"tslint": "^5.20.0",
"typescript": "^3.6.3",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8"
},
"dependencies": {
"echarts": "^4.2.1",
"fetch-intercept": "^2.3.1",
"howler": "^2.1.2",
"lodash.debounce": "^4.0.8",
"whatwg-fetch": "^3.0.0"
}
}