-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
76 lines (76 loc) · 2.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "cplayer",
"version": "3.2.2",
"description": "A beautiful and clean WEB Music Player by HTML5.",
"main": "./dist/cplayer.js",
"scripts": {
"clean": "rimraf ./dist && rimraf ./lib && rimraf ./example",
"dev": "webpack-dev-server --inline --progress",
"build": "npm run clean && tsc && webpack --config webpack.config.example.js && webpack --config webpack.config.prod.js && npm run build:noview",
"build:noview": "cross-env noview=true suffix=\"-noview\" webpack --config webpack.config.prod.js"
},
"keywords": [
"cPlayer",
"html5",
"audio",
"music",
"player",
"es6",
"cplayer"
],
"browserslist": [
"> 1%",
"Last 2 versions",
"IE 10"
],
"maintainers": [
{
"name": "Corps",
"email": "[email protected]",
"web": "https://corps.set-fire.com"
}
],
"contributors": [
{
"name": "Corps",
"email": "[email protected]",
"web": "https://corps.set-fire.com"
}
],
"bugs": "[email protected]",
"license": "MIT",
"repository": "https://github.com/MoePlayer/cPlayer",
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "7.8.3",
"@types/node": "^13.1.6",
"@types/wicg-mediasession": "^1.0.3",
"@types/highlight.js": "^9.12.3",
"highlight.js": "^9.17.1",
"autoprefixer": "^9.7.3",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^6.0.3",
"css-loader": "^3.4.2",
"file-loader": "^5.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.13.0",
"postcss": "^7.0.26",
"postcss-loader": "^3.0.0",
"raw-loader": "^4.0.0",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.2",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"typings": "./lib/index.d.ts",
"dependencies": {}
}