forked from lusaxweb/vuesax
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 2.9 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
{
"name": "@brugarolas/vuesax",
"version": "3.12.2-patch-8",
"description": "Framework Components for Vue js. This is a fork. Original framework is made by lusaxweb.",
"license": "MIT",
"author": "andres-brugarolas",
"repository": "https://github.com/Brugarolas/vuesax",
"keywords": [
"vuesax",
"vue",
"vuejs",
"vue-components",
"components",
"component",
"javascript",
"css",
"framework",
"ui",
"frontend",
"responsive",
"stylus"
],
"main": "dist/vuesax.common.js",
"unpkg": "dist/vuesax.umd.min.js",
"jsdelivr": "dist/vuesax.umd.min.js",
"private": false,
"scripts": {
"dev": "vuepress dev docs",
"serve": "vue-cli-service serve --target lib src/index.js --open",
"serve:no-linter": "vue-cli-service serve --target lib src/index.js --open --skip-plugins @vue/cli-plugin-eslint",
"build": "mkdir dist || vue-cli-service build --target lib src/index.js --name vuesax",
"build:no-linter": " mkdir dist || vue-cli-service build --target lib src/index.js --name vuesax --skip-plugins @vue/cli-plugin-eslint --max-errors Infinity",
"lint": "vue-cli-service lint",
"v": "npm version patch",
"v2": "npm version minor",
"p": "npm publish --access public",
"deploy": "npm run build & git add . & git commit -m 'deploy' & npm run v & npm run p && git push",
"deploy2": "npm run build & git add . & git commit -m 'deploy' & npm run v2 & npm run p && git push",
"docs:build": "vuepress build docs",
"docs:deploy": "sh scripts/deploy.sh",
"deployx": "npm run docs:deploy && npm run deploy",
"deployx2": "npm run docs:deploy && npm run deploy2",
"new:component": "sh scripts/newComponent.sh",
"utils:outdated": "npm outdated",
"utils:updates": "ncu",
"utils:upgrades": "ncu -u"
},
"dependencies": {
"vue": "^2.7.14"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@vue/cli-plugin-babel": "^4.5.8",
"@vue/cli-plugin-eslint": "^4.5.8",
"@vue/cli-service": "^4.5.8",
"@vuepress/core": "^1.9.9",
"@vuepress/plugin-google-analytics": "^1.9.9",
"@vuepress/plugin-pwa": "^1.9.9",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^5.0.0",
"eslint": "^7.12.1",
"eslint-plugin-vue": "^7.1.0",
"file-loader": "^6.2.0",
"highlight.js": "^10.3.2",
"markdown-it": "^12.0.2",
"mini-css-extract-plugin": "^1.2.1",
"npm-check-updates": "^16.10.7",
"stylus": "^0.59.0",
"stylus-loader": "^3.0.2",
"vuepress": "^1.9.9",
"webpack": "^4.46.0"
},
"babel": {
"presets": [
"@vue/app"
]
},
"eslintConfig": {
"root": true,
"extends": [
"plugin:vue/essential",
"eslint:recommended"
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"engines": {
"node": ">=10.13.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}