-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
95 lines (95 loc) · 2.88 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@moefe/vue-aplayer",
"description": "A beautiful HTML5 music player for Vue.js",
"version": "2.0.0-beta.5",
"author": "u3u <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/MoePlayer/vue-aplayer#readme",
"main": "dist/VueAPlayer.common.js",
"unpkg": "dist/VueAPlayer.umd.min.js",
"jsdelivr": "dist/VueAPlayer.umd.min.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"repository": {
"url": "git+https://github.com/MoePlayer/vue-aplayer.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/MoePlayer/vue-aplayer/issues"
},
"keywords": [
"player",
"aplayer",
"vue-aplayer",
"music",
"html5",
"audio",
"media"
],
"scripts": {
"prepublishOnly": "yarn build",
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build --report --target lib --name VueAPlayer packages/@moefe/vue-aplayer/index.ts",
"build:example": "vue-cli-service build --dest demo",
"docs:link": "yarn link && yarn link \"@moefe/vue-aplayer\"",
"docs:dev": "yarn docs:link && vuepress dev docs --debug --port 3000",
"docs:build": "yarn docs:prebuild && vuepress build docs",
"docs:prebuild": "yarn build && yarn docs:link",
"lint": "vue-cli-service lint packages",
"lint:prettier": "prettier-eslint-check \"**/*.{js,jsx,json,ts,tsx,scss,vue,md}\"",
"format": "prettier-eslint \"**/*.{js,jsx,json,ts,tsx,scss,vue,md}\" --write",
"test:types": "dtslint types",
"contributors": "all-contributors"
},
"peerDependencies": {
"vue": "^2.2.0"
},
"dependencies": {
"vue": "^2.5.17"
},
"devDependencies": {
"@types/classnames": "^2.2.6",
"@types/hls.js": "^0.10.2",
"@types/node": "^10.12.12",
"@vue/cli-plugin-babel": "^3.2.0",
"@vue/cli-plugin-eslint": "^3.2.1",
"@vue/cli-plugin-typescript": "^3.2.0",
"@vue/cli-service": "^3.2.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/eslint-config-typescript": "^3.2.0",
"@vuepress/plugin-pwa": "^1.0.0-alpha.0",
"all-contributors-cli": "^5.4.1",
"classnames": "^2.2.6",
"dayjs": "^1.7.7",
"dtslint": "^0.3.0",
"git-revision-webpack-plugin": "^3.0.3",
"lint-staged": "^8.1.0",
"node-sass": "^4.11.0",
"prettier": "^1.15.3",
"prettier-eslint-check": "^1.0.2",
"prettier-eslint-cli": "^4.7.1",
"sass-loader": "^7.1.0",
"typescript": "^3.2.2",
"vue-class-component": "^6.3.2",
"vue-property-decorator": "^7.2.0",
"vue-svg-loader": "^0.11.0",
"vue-template-compiler": "^2.5.17",
"vue-tsx-support": "^2.2.1",
"vuepress": "^1.0.0-alpha.27"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "vue-cli-service lint",
"*.{js,jsx,json,ts,tsx,scss,vue,md}": "prettier-eslint-check"
}
}