-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
69 lines (69 loc) · 2 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
{
"name": "vue-responsive",
"version": "1.3.1",
"description": "A plugin for responsive design without media querys for Vue.js 2.x",
"main": "src/index.js",
"scripts": {
"dev": "vite",
"build": "vite build && node -e \"require('fs').rename('dist/Vite.html', 'dist/index.html', () =>{})\" && npm run dist",
"serve": "vite preview",
"live": "live-server --open=Demo.html",
"dist": "node build/babel.release.js",
"build:types": "tsc src/index.js -d --declarationDir src/ --declarationMap --emitDeclarationOnly --allowJs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reinerBa/Vue-Responsive.git"
},
"keywords": [
"vuejs",
"responsive"
],
"author": "Reiner Bamberger",
"license": "MIT",
"bugs": {
"url": "https://github.com/reinerBa/Vue-Responsive/issues"
},
"homepage": "https://reinerba.github.io/Vue-Responsive/",
"peerDependencies": {
"vue": "2.x"
},
"devDependencies": {
"autoprefixer": "^10.4.2",
"babel-core": "^6.26.3",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.22.0",
"chalk": "^2.4.2",
"fs-extra": "^5.0.0",
"node-notifier": "^10.0.0",
"ora": "^1.2.0",
"portfinder": "^1.0.28",
"rimraf": "^2.7.1",
"semver": "^5.7.1",
"shelljs": "^0.8.5",
"typescript": "^4.5.4",
"uglify-js": "^3.14.5",
"vite": "^2.0.5",
"vite-plugin-vue2": "^1.4.0",
"vue": "^2.6.12",
"vue-prism": "^1.0.5",
"vue-template-compiler": "^2.6.14"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"dependencies": {}
}