forked from lusaxweb/vuesax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.73 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
{
"name": "fixed-vuesax",
"version": "3.14.1",
"engines": {
"npm": ">=7"
},
"private": false,
"description": "Framework Components for Vue js",
"author": "ldrovira <[email protected]>",
"scripts": {
"build": "vue-cli-service build --target lib src/index.js --name vuesax",
"lint": "vue-cli-service lint",
"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",
"deployx": "npm run docs:deploy && npm run deploy",
"deployx2": "npm run docs:deploy && npm run deploy2",
"dev": "vuepress dev docs ",
"docs:build": "vuepress build docs",
"docs:deploy": "sh scripts/deploy.sh",
"new:component": "sh scripts/newComponent.sh",
"p": "npm publish",
"v": "npm version patch",
"v2": "npm version minor"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "dist/vuesax.common.js",
"unpkg": "dist/vuesax.umd.min.js",
"dependencies": {
"vue": "^2.6"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@vue/cli": "^5.0.7",
"@vue/cli-plugin-babel": "^5.0.7",
"@vue/cli-plugin-eslint": "^5.0.7",
"@vue/cli-service": "^5.0.7",
"@vue/eslint-config-standard": "^7.0.0",
"chalk": "^4.1.2",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.23.3",
"eslint": "^8.19.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.2.0",
"file-loader": "^6.2.0",
"stylus": "^0.58.1",
"stylus-loader": "^7.0.0",
"terser-webpack-plugin": "^5.3.3",
"vue-loader": "^15.10.0",
"vue-template-compiler": "^2.7.3",
"webpack": "^5.73.0"
},
"eslintConfig": {
"root": true,
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/standard"
],
"env": {
"node": true
},
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 edge version",
"last 1 safari version"
],
"bugs": {
"url": "https://github.com/tofandel/fixed-vuesax/issues"
},
"homepage": "https://lusaxweb.github.io/vuesax/#/",
"jsdelivr": "dist/vuesax.umd.min.js",
"keywords": [
"vuesax",
"vue",
"vuejs",
"vue-components",
"components",
"component",
"javascript",
"css",
"framework",
"ui",
"frontend",
"responsive",
"stylus"
],
"license": "MIT",
"repository": "tofandel/vuesax"
}