jsy-avue 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +36 -0
  2. package/package.json +75 -0
package/README.md ADDED
@@ -0,0 +1,36 @@
1
+ <p align="center"><a href="https://avuejs.com" target="_blank" rel="noopener noreferrer"><img width="100" src="https://avuejs.com/images/logo-bg.jpg" alt="Avue logo"></a></p>
2
+
3
+ ## 介绍
4
+ Avue.js是基于现有的element-ui库进行的二次封装,从而简化一些繁琐的操作,核心理念为数据驱动视图,主要的组件库针对table表格和form表单场景,同时衍生出更多企业常用的组件,达到高复用,容易维护和扩展的框架,同时内置了丰富了数据展示组件,让开发变得更加容易.
5
+
6
+ ### 浏览器兼容性
7
+ 支持所有符合ES5标准的浏览器(不支持IE8及以下版本).
8
+
9
+ ## 文件
10
+
11
+ | 文件名 | 用途 |
12
+ |-------------|----------|
13
+ | avue.min.js | 生产环境|
14
+ | avue.js | 开发环境|
15
+
16
+ ## 文档
17
+
18
+ 要查看[Live Examples](https://avuejs.com/doc/installation)和文档,请访问[https://avuejs.com](https://avuejs.com).
19
+
20
+ ## 问答
21
+
22
+ 有关问题和支持,请使用[issues](https://gitee.com/smallweigit/avue/issues)或加入QQ群606410437.
23
+
24
+ ## issues
25
+
26
+ 打开问题之前,请务必提供详细的问题过程和截图,不符合准则的问题将会被拒绝.
27
+
28
+ ## Changelog
29
+
30
+ [发行说明](https://gitee.com/smallweigit/avue/releases)中记录了每个版本的详细更改。
31
+
32
+ ## License
33
+
34
+ [MIT](http://opensource.org/licenses/MIT)
35
+
36
+ Copyright (c) 2017-present, Smallwei
package/package.json ADDED
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "jsy-avue",
3
+ "version": "0.0.1",
4
+ "originversion": "2.8.27",
5
+ "description": "A Magic Configurable Web Framework",
6
+ "main": "lib/avue.min.js",
7
+ "unpkg": "lib/avue.min.js",
8
+ "jsdelivr": "lib/avue.min.js",
9
+ "scripts": {
10
+ "bootstrap": "yarn --registry https://registry.npm.taobao.org || npm install --registry https://registry.npm.taobao.org ",
11
+ "gen:version": "node build/version.js",
12
+ "analyz": "NODE_ENV=production npm_config_report=true npm run build",
13
+ "dev": "yarn gen:version && cross-env TARGET=dev UINAME=element-ui gulp watch",
14
+ "build": "yarn gen:version && cross-env TARGET=prod UINAME=element-ui gulp build"
15
+ },
16
+ "keywords": [
17
+ "vue",
18
+ "element-ui",
19
+ "avue"
20
+ ],
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://gitee.com/smallweigit/avue.git"
24
+ },
25
+ "author": "xuexingwei",
26
+ "license": "MIT",
27
+ "bugs": {
28
+ "url": "https://gitee.com/smallweigit/avue/issues"
29
+ },
30
+ "homepage": "https://gitee.com/smallweigit/avue/blob/master/README.md",
31
+ "devDependencies": {
32
+ "@babel/core": "^7.13.14",
33
+ "@babel/preset-env": "^7.13.12",
34
+ "babel-loader": "^8.2.2",
35
+ "cross-env": "^3.1.3",
36
+ "css-loader": "^5.2.0",
37
+ "eslint": "4.14.0",
38
+ "eslint-config-elemefe": "0.1.1",
39
+ "eslint-loader": "^1.9.0",
40
+ "eslint-plugin-html": "^4.0.1",
41
+ "eslint-plugin-json": "^1.2.0",
42
+ "gulp": "^4.0.0",
43
+ "gulp-autoprefixer": "^4.0.0",
44
+ "gulp-cssmin": "^0.1.7",
45
+ "gulp-postcss": "^6.1.1",
46
+ "gulp-sass": "^4.1.0",
47
+ "progress-bar-webpack-plugin": "^1.11.0",
48
+ "vue-loader": "^15.9.6",
49
+ "vue-template-compiler": "^2.6.12",
50
+ "webpack": "^4.27.0",
51
+ "webpack-bundle-analyzer": "^3.0.3",
52
+ "webpack-merge": "^4.1.4"
53
+ },
54
+ "dependencies": {
55
+ "axios": "^0.21.1",
56
+ "countup.js": "^1.9.3",
57
+ "dayjs": "^1.10.4",
58
+ "deepmerge": "^3.1.0",
59
+ "element-ui": "^2.15.6",
60
+ "nprogress": "^0.2.0",
61
+ "vue": "^2.5.17"
62
+ },
63
+ "publishConfig": {
64
+ "access": "public",
65
+ "registry": "https://registry.npmjs.org/"
66
+ },
67
+ "files": [
68
+ "lib",
69
+ "README.md",
70
+ "LICENSE"
71
+ ],
72
+ "__npminstall_done": true,
73
+ "_from": "@smallwei/avue@2.8.27",
74
+ "_resolved": "https://registry.npmmirror.com/@smallwei/avue/-/avue-2.8.27.tgz"
75
+ }