-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 906 Bytes
/
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
{
"name": "h5-audio-player",
"version": "0.2.1",
"description": "a javascript library or utility for creating audio player on web or server or mobile side",
"main": "src/audioplayer.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx webpack --config webpack.config.js"
},
"keywords": [
"audioplayer"
],
"author": "eagle.guo",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"babel-loader": "^8.2.2",
"webpack": "^5.58.1",
"webpack-cli": "^4.9.0"
},
"files": [
"README.md",
"development.md",
"LICENSE",
"package.json",
"css/*",
"images/*",
"dest/audioplayer.bundle.js"
],
"dependencies": {
"jquery": "^3.6.0",
"core-js": "^3.18.2"
}
}