forked from DIYgod/APlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.74 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.74 KB
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
77
78
79
80
81
82
83
{
"name": "aplayer",
"version": "1.10.1",
"description": "Wow, such a beautiful html5 music player",
"main": "dist/APlayer.min.js",
"style": "dist/APlayer.min.css",
"scripts": {
"start": "npm run dev",
"build": "cross-env NODE_ENV=production webpack --config webpack/prod.config.js --progress",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config webpack/dev.config.js",
"test": "eslint src webpack",
"format": "eslint \"**/*.js\" --fix && prettier \"**/*.{js,json,md}\" --write",
"format:staged": "eslint \"**/*.js\" --fix && pretty-quick --staged --verbose --pattern \"**/*.{js,json,md}\"",
"format:check": "eslint \"**/*.js\" && prettier-check \"**/*.{js,json,md}\""
},
"files": [
"dist"
],
"repository": {
"url": "git+https://github.com/DIYgod/APlayer.git",
"type": "git"
},
"keywords": [
"player",
"music",
"html5"
],
"gitHooks": {
"pre-commit": "npm run format:staged"
},
"author": "DIYgod",
"license": "MIT",
"bugs": {
"url": "https://github.com/DIYgod/APlayer/issues"
},
"homepage": "https://github.com/DIYgod/APlayer#readme",
"devDependencies": {
"@babel/core": "^7.16.0",
"@vuepress/plugin-back-to-top": "1.8.2",
"@vuepress/plugin-google-analytics": "1.8.2",
"@vuepress/plugin-pwa": "1.8.2",
"art-template-loader": "1.4.3",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.3",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"cssnano": "^5.0.9",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-prettier": "^4.0.0",
"exports-loader": "^3.1.0",
"file-loader": "^6.2.0",
"git-revision-webpack-plugin": "^5.0.0",
"mini-css-extract-plugin": "^2.4.4",
"node-sass": "^6.0.1",
"postcss-loader": "^6.2.0",
"prettier": "^2.4.1",
"prettier-check": "^2.0.0",
"pretty-quick": "^3.1.1",
"sass-loader": "^12.3.0",
"strip-loader": "^0.1.2",
"style-loader": "^3.3.1",
"svg-inline-loader": "0.8.2",
"template-string-optimize-loader": "^3.0.0",
"url-loader": "^4.1.1",
"vuepress": "1.8.2",
"webpack": "^5.61.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "^4.4.0",
"yorkie": "^2.0.0",
"@babel/preset-env": "^7.16.0",
"core-js": "^3.19.1",
"terser-webpack-plugin": "^5.2.4"
},
"dependencies": {
"balloon-css": "^1.2.0",
"smoothscroll": "0.4.0"
},
"browserslist": [
"last 3 version, not dead, not IE 11"
]
}