-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
114 lines (114 loc) · 2.97 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
109
110
111
112
113
114
{
"name": "vue-iframes",
"version": "0.0.21",
"description": "Vue component for creating dynamic async iframes",
"main": "dist/vue-iframes.js",
"files": [
"dist",
"nuxt"
],
"scripts": {
"dev": "NODE_ENV=development webpack-dev-server --config ./build/webpack.dev.js --open --inline --hot",
"build:debug": "NODE_ENV=debug webpack --config build/webpack.dist.js",
"build:release": "NODE_ENV=production webpack --config build/webpack.dist.js",
"build:docs": "webpack --config build/webpack.docs.js",
"build": "rollup -c",
"clean": "rimraf ./dist ./docs/docs.js",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "standard-version && git push --follow-tags origin main && yarn publish",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chantouchsek/vue-iframes.git"
},
"keywords": [
"iframe",
"async",
"dynamic",
"vue iframe",
"vue",
"vuejs",
"components"
],
"author": "Chantouch Sek",
"license": "MIT",
"bugs": {
"url": "https://github.com/chantouchsek/vue-iframes/issues"
},
"homepage": "https://github.com/chantouchsek/vue-iframes#readme",
"dependencies": {
"lodash.debounce": "^4.0.8",
"uuid": "^8.3.2"
},
"peerDependecies": {
"vue": "^2.5.16"
},
"devDependencies": {
"@types/lodash.debounce": "^4.0.9",
"@types/uuid": "^9.0.8",
"autoprefixer": "^9.8.8",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.4.1",
"css-loader": "^0.28.11",
"deep-assign": "^3.0.0",
"eslint": "^4.19.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-vue": "^4.7.1",
"extract-loader": "^2.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"less": "^3.13.1",
"less-loader": "^4.1.0",
"mocha": "^10.4.0",
"promise-polyfill": "^8.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-vue": "^5.1.9",
"standard-version": "^9.5.0",
"style-loader": "^0.21.0",
"vue": "^2.7.16",
"vue-loader": "^11.3.4",
"vue-router": "^3.6.5",
"vue-style-loader": "^3.1.2",
"vue-template-compiler": "^2.7.16",
"webpack": "^3.12.0",
"webpack-dev-server": "^3.11.3",
"yargs": "^17.7.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"ssr": "./dist/vue-iframes.ssr.js"
}