-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.4 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
108
109
110
111
112
113
114
115
116
117
118
{
"name": "le-ui",
"version": "1.4.38",
"description": "leke vue components",
"author": {
"name": "thomasyxy",
"email": "[email protected]",
"url": "https://github.com/thomasyxy"
},
"private": false,
"main": "dist/leui.js",
"license": "MIT",
"bugs": "https://github.com/lefit-front/le-ui/issues/1",
"homepage": "https://github.com/lefit-front/le-ui",
"repository": {
"type": "git",
"url": "https://github.com/lefit-front/le-ui"
},
"keywords": [
"le",
"vue",
"vue.js",
"component",
"components",
"ui",
"framework"
],
"files": [
"dist",
"src"
],
"scripts": {
"dev": "webpack-dev-server --content-base test/ --open --inline --hot --compress --history-api-fallback --host 0.0.0.0 --port 8096 --disableHostCheck true --config build/webpack.dev.config.js",
"build:style": "gulp --gulpfile build/build-style.js",
"build:dev": "webpack --config build/webpack.dist.dev.config.js",
"build:prod": "webpack --config build/webpack.dist.prod.config.js",
"build": "npm run build:style && npm run build:dev && npm run build:prod",
"deploy": "npm run build && npm publish --registry http://registry.npmjs.org",
"page": "webpack --config build/webpack.page.config.js",
"lint": "eslint --fix --ext .js,.vue src",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
"test": "npm run lint && npm run unit"
},
"dependencies": {
"async-validator": "^1.7.1",
"core-js": "^2.4.1",
"deepmerge": "^1.3.1",
"lodash.isequal": "^4.5.0",
"popper.js": "^0.6.4",
"postcss-loader": "^2.0.6",
"raf.js": "0.0.4",
"vue-phone": "^1.0.4"
},
"peerDependencies": {
"vue": "^2.3.3"
},
"devDependencies": {
"autoprefixer-loader": "^2.0.0",
"avoriaz": "^2.4.0",
"babel": "^6.23.0",
"babel-core": "^6.23.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.9.0",
"babel-runtime": "^6.11.6",
"chai": "^3.5.0",
"cross-env": "^3.1.4",
"css-loader": "^0.23.1",
"eslint": "^3.12.2",
"eslint-plugin-html": "^1.7.0",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.8.5",
"friendly-errors-webpack-plugin": "^1.6.1",
"function-bind": "^1.1.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-clean-css": "^3.0.4",
"gulp-less": "^3.1.0",
"gulp-rename": "^1.2.2",
"html-loader": "^0.3.0",
"html-webpack-plugin": "^2.28.0",
"karma": "^1.4.1",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon-chai": "^1.2.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^2.0.2",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"lolex": "^1.5.2",
"mocha": "^3.2.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"vue": "^2.3.3",
"vue-hot-reload-api": "^1.3.3",
"vue-html-loader": "^1.2.3",
"vue-loader": "^11.0.0",
"vue-router": "^2.2.1",
"vue-style-loader": "^1.0.0",
"vue-template-compiler": "^2.3.3",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.4.1",
"webpack-merge": "^3.0.0"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}