Blame view

package.json 3.75 KB
7fa943eb   梁灏   init
1
2
  {
    "name": "iview",
b45a0e68   梁灏   release 2.10.1
3
    "version": "2.10.1",
7fa943eb   梁灏   init
4
    "title": "iView",
c1cfacb2   梁灏   update readme
5
    "description": "A high quality  UI components Library with Vue.js",
7fa943eb   梁灏   init
6
7
8
9
10
11
12
13
14
15
    "homepage": "http://www.iviewui.com",
    "keywords": [
      "iview",
      "vue",
      "vue.js",
      "component",
      "components",
      "ui",
      "framework"
    ],
5e8a2915   jingsam   add umd library b...
16
    "main": "dist/iview.js",
17a0e6c5   jingsam   add dist/ to .git...
17
18
19
20
    "files": [
      "dist",
      "src"
    ],
7fa943eb   梁灏   init
21
    "scripts": {
728d5812   梁灏   update
22
      "dev": "webpack-dev-server --content-base test/ --open --inline --hot --compress --history-api-fallback --port 8081 --config build/webpack.dev.config.js",
451b52ce   梁灏   Global install iView
23
      "dist:style": "gulp --gulpfile build/build-style.js",
5e8a2915   jingsam   add umd library b...
24
25
      "dist:dev": "webpack --config build/webpack.dist.dev.config.js",
      "dist:prod": "webpack --config build/webpack.dist.prod.config.js",
0813a64c   Lawrence Lee   update npm script...
26
27
      "dist:locale": "webpack --config build/webpack.dist.locale.config.js",
      "dist": "npm run dist:style && npm run dist:dev && npm run dist:prod && npm run dist:locale",
b0893113   jingsam   :art: add eslint
28
      "lint": "eslint --fix --ext .js,.vue src",
9b6ff1ce   huixisheng   add test and upda...
29
      "unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
44412093   huixisheng   [fixed] eslint error
30
      "test": "npm run lint && npm run unit",
17a0e6c5   jingsam   add dist/ to .git...
31
      "prepublish": "npm run dist"
7fa943eb   梁灏   init
32
33
34
    },
    "repository": {
      "type": "git",
e06f5e26   梁灏   change git url
35
      "url": "https://github.com/iview/iview"
7fa943eb   梁灏   init
36
37
38
39
    },
    "author": "Aresn",
    "license": "MIT",
    "bugs": {
e06f5e26   梁灏   change git url
40
      "url": "https://github.com/iview/iview/issues"
7fa943eb   梁灏   init
41
    },
646c24b3   梁灏   move vue to depen...
42
    "dependencies": {
504f8c52   梁灏   update Modal
43
      "async-validator": "^1.8.2",
33332be1   Graham Fairweather   Non-breaking pack...
44
45
      "deepmerge": "^2.1.0",
      "element-resize-detector": "^1.1.14",
5426dcf9   Sergio Crisostomo   fix specs, fix me...
46
      "js-calendar": "^1.2.3",
be01f0b4   Sergio Crisostomo   New component: Sc...
47
      "lodash.throttle": "^4.1.1",
e7893a68   梁灏   update ColorPicker
48
      "popper.js": "^0.6.4",
e31d3b05   Graham Fairweather   Revert early Sele...
49
      "tinycolor2": "^1.4.1"
646c24b3   梁灏   move vue to depen...
50
    },
60f67fea   jingsam   Update package.json
51
    "peerDependencies": {
ecf6c2fa   梁灏   update dependence
52
      "vue": "^2.5.2"
60f67fea   jingsam   Update package.json
53
    },
7fa943eb   梁灏   init
54
    "devDependencies": {
3b8f7c45   Graham Fairweather   Updates required ...
55
      "autoprefixer-loader": "^3.2.0",
074ad8aa   Graham Fairweather   Resolve conflict
56
      "babel-cli": "^6.26.0",
ee99d4ae   Sergio Crisostomo   Update dependencies
57
      "babel-core": "^6.26.0",
e64ab2e1   Graham Fairweather   Merge
58
      "babel-helper-vue-jsx-merge-props": "^2.0.3",
33332be1   Graham Fairweather   Non-breaking pack...
59
      "babel-loader": "^7.1.4",
e64ab2e1   Graham Fairweather   Merge
60
61
62
63
64
      "babel-plugin-dynamic-import-node": "^1.2.0",
      "babel-plugin-syntax-jsx": "^6.18.0",
      "babel-plugin-transform-class-properties": "^6.24.1",
      "babel-plugin-transform-es5-property-mutators": "^6.24.1",
      "babel-plugin-transform-object-rest-spread": "^6.26.0",
33332be1   Graham Fairweather   Non-breaking pack...
65
66
      "babel-plugin-transform-runtime": "^6.23.0",
      "babel-plugin-transform-vue-jsx": "^3.7.0",
10a9f53b   Xotic750   Upgrade: babel-pr...
67
      "babel-preset-env": "^1.6.1",
0df878a8   Sergio Crisostomo   Add Object rest s...
68
      "babel-preset-stage-3": "^6.24.1",
ee99d4ae   Sergio Crisostomo   Update dependencies
69
      "babel-runtime": "^6.26.0",
33332be1   Graham Fairweather   Non-breaking pack...
70
71
72
      "chai": "^4.1.2",
      "compression-webpack-plugin": "^1.1.10",
      "cross-env": "^5.1.3",
3b8f7c45   Graham Fairweather   Updates required ...
73
      "css-loader": "^0.28.10",
98bf25b3   梁灏   fixed #1286
74
      "eslint": "^3.19.0",
0df878a8   Sergio Crisostomo   Add Object rest s...
75
      "eslint-plugin-vue": "^2.1.0",
98bf25b3   梁灏   fixed #1286
76
      "extract-text-webpack-plugin": "^2.1.2",
3b8f7c45   Graham Fairweather   Updates required ...
77
      "file-loader": "^1.1.11",
9b6ff1ce   huixisheng   add test and upda...
78
      "friendly-errors-webpack-plugin": "^1.6.1",
7fa943eb   梁灏   init
79
      "gulp": "^3.9.1",
33332be1   Graham Fairweather   Non-breaking pack...
80
81
82
      "gulp-autoprefixer": "^5.0.0",
      "gulp-clean-css": "^3.9.3",
      "gulp-less": "^4.0.0",
7fa943eb   梁灏   init
83
      "gulp-rename": "^1.2.2",
3b8f7c45   Graham Fairweather   Updates required ...
84
      "html-loader": "^0.5.5",
33332be1   Graham Fairweather   Non-breaking pack...
85
86
      "html-webpack-plugin": "^3.0.6",
      "karma": "^2.0.0",
d32a53b4   Sergio Crisostomo   Use Chrome Headle...
87
      "karma-chrome-launcher": "^2.2.0",
9b6ff1ce   huixisheng   add test and upda...
88
89
      "karma-coverage": "^1.1.1",
      "karma-mocha": "^1.3.0",
c72de568   梁灏   update dependencies
90
      "karma-sinon-chai": "^1.3.3",
9b6ff1ce   huixisheng   add test and upda...
91
      "karma-sourcemap-loader": "^0.3.7",
33332be1   Graham Fairweather   Non-breaking pack...
92
93
      "karma-spec-reporter": "^0.0.32",
      "karma-webpack": "^2.0.13",
c72de568   梁灏   update dependencies
94
      "less": "^2.7.3",
3b8f7c45   Graham Fairweather   Updates required ...
95
      "less-loader": "^4.0.6",
33332be1   Graham Fairweather   Non-breaking pack...
96
97
98
99
      "lolex": "^2.3.2",
      "mocha": "^5.0.4",
      "sinon": "^4.4.2",
      "sinon-chai": "^3.0.0",
3b8f7c45   Graham Fairweather   Updates required ...
100
101
      "style-loader": "^0.20.2",
      "url-loader": "^1.0.1",
2e018fc7   梁灏   update vue
102
      "vue": "^2.5.16",
33332be1   Graham Fairweather   Non-breaking pack...
103
      "vue-hot-reload-api": "^2.3.0",
3b8f7c45   Graham Fairweather   Updates required ...
104
      "vue-html-loader": "^1.2.4",
33332be1   Graham Fairweather   Non-breaking pack...
105
106
      "vue-loader": "^14.2.1",
      "vue-router": "^3.0.1",
3b8f7c45   Graham Fairweather   Updates required ...
107
      "vue-style-loader": "^4.0.2",
2e018fc7   梁灏   update vue
108
      "vue-template-compiler": "^2.5.16",
33332be1   Graham Fairweather   Non-breaking pack...
109
      "webpack": "^3.11.0",
11867c87   梁灏   update vue-loader...
110
      "webpack-dev-server": "^2.11.1",
c9c5e751   huixisheng   [change] optimize...
111
      "webpack-merge": "^3.0.0"
9b6ff1ce   huixisheng   add test and upda...
112
113
    },
    "engines": {
ee99d4ae   Sergio Crisostomo   Update dependencies
114
      "node": ">= 6.0.0",
9b6ff1ce   huixisheng   add test and upda...
115
      "npm": ">= 3.0.0"
e64ab2e1   Graham Fairweather   Merge
116
117
118
119
120
121
122
123
124
125
    },
    "browserslist": [
      "last 3 Chrome versions",
      "last 3 Firefox versions",
      "Safari >= 10",
      "Explorer >= 11",
      "Edge >= 12",
      "iOS >= 10",
      "Android >= 6"
    ]
7fa943eb   梁灏   init
126
  }