forked from MoePlayer/vue-dplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 951 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
38
{
"name": "vue-dplayer",
"description": "A Vue 2.x video player component based on DPlayer",
"version": "0.0.2",
"main": "dist/Vue-DPlayer.js",
"files": [
"dist"
],
"scripts": {
"test": "echo lol",
"lint": "vbuild -c vbuild.example.js --eslint",
"build": "npm run build:cjs && npm run build:umd",
"build:cjs": "vbuild -c vbuild.component.js --format cjs",
"build:umd": "vbuild -c vbuild.component.js --format umd",
"example": "vbuild -c vbuild.example.js -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sinchang/vue-dplayer.git"
},
"bugs": {
"url": "https://github.com/sinchang/vue-dplayer/issues"
},
"keywords": [
"vue",
"component",
"player"
],
"author": "sinchang <[email protected]>",
"devDependencies": {
"vbuild": "^6.0.0"
},
"license": "MIT",
"dependencies": {
"dplayer": "^1.1.4",
"vue-github-badge": "^1.0.0"
}
}