-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
108 lines (108 loc) · 2.86 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
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "vue-lazytube",
"version": "1.1.1",
"private": false,
"keywords": [
"youtube",
"youtube-video",
"vimeo",
"vue-youtube",
"lazyload",
"vue",
"vuejs",
"iframe",
"lazytube",
"plugin"
],
"homepage": "https://github.com/seeratawan01/vue-lazytube",
"bugs": "https://github.com/seeratawan01/vue-lazytube/issues",
"files": [
"dist/*"
],
"author": {
"name": "Seerat Awan",
"email": "[email protected]",
"url": "https://github.com/seeratawan01/"
},
"main": "./dist/vue-lazytube.umd.min.js",
"unpkg": "./dist/vue-lazytube.umd.min.js",
"jsdelivr": "./dist/vue-lazytube.umd.min.js",
"scripts": {
"serve": "webpack serve --config config/webpack.dev.js --progress",
"build": "webpack --config config/webpack.prod.js",
"pack": "npm pack",
"buildmajor": "npm version major && yarn build",
"buildminor": "npm version minor && yarn build",
"buildpatch": "npm version patch && yarn build"
},
"license": "MIT",
"dependencies": {
"core-js": "^3.10.0",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-arrow-functions": "^7.12.1",
"@babel/plugin-transform-async-to-generator": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.1",
"@babel/runtime": "^7.12.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^10.0.0",
"copy-webpack-plugin": "^6.2.1",
"cross-env": "^7.0.2",
"css-loader": "^5.0.0",
"css-minimizer-webpack-plugin": "^1.1.5",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"html-webpack-plugin": "^5.0.0-alpha.7",
"http-server": "^0.12.3",
"mini-css-extract-plugin": "^1.0.0",
"path": "^0.12.7",
"postcss-loader": "^4.0.4",
"postcss-preset-env": "^6.7.0",
"sass": "^1.49.7",
"sass-loader": "^10.0.3",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.3.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "^2.6.11",
"vue-loader": "^15.9.6",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^5.1.3",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.2.0"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"externals": {
"vue": "vue"
},
"funding": "https://www.patreon.com/seeratawan",
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}