-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
137 lines (137 loc) · 5.21 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "vue2-slot-calendar",
"aliasName": "vue2-calendar",
"version": "2.2.5",
"description": "基于vue2.js 和 bootstrap.css 样式的日历控件。本人于2019.03.29在原 v2.2.4 版基础上作了优化,因此改版本号为 v2.2.5。改动内容:1.改进原控件无法切换语言的BUG,支持 lang='zh-CN'和'en'。2.日历面板增加一个位置选项,允许让面板右对齐,只需要position=right即可。3.原 :on-day-click 事件只有在 hasInput=false 时才生效,现改为一直有效,这样当用户点击日历面板上的日期后就可以触发该事件。4.clear=false时文本框右侧会显示一个日历图标,高仿bootstrap的日历组件,但clear=true时不显示",
"author": "Alax <[email protected]>",
"scripts": {
"dev": "node build/dev-server.js",
"start": "npm run dev",
"doc": "node build/docs.js",
"docs": "node build/doc.server.js",
"build": "node build/build.js",
"lib": "cross-env BABEL_ENV=npm node build/npm.js",
"deploy:doc": "npm run doc && sh deploy/doc.sh",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
"test": "npm run unit",
"lint": "eslint --ext .js,.vue src test/unit/specs --fix"
},
"main": "./index.js",
"files": [
"index.js",
"lib",
"example"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.1.5",
"autoprefixer": "^9.3.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-istanbul": "^5.1.0",
"babel-preset-vue-app": "^2.0.0",
"bootstrap-sass": "^3.3.7",
"chai": "^4.2.0",
"chalk": "^2.4.1",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.0.0-beta.5",
"eventsource-polyfill": "^0.9.6",
"express": "^4.16.4",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^2.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.19.1",
"inject-loader": "^4.0.1",
"json-loader": "^0.5.7",
"karma": "^3.1.1",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.5.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.0-rc.3",
"lolex": "^3.0.0",
"markdown-loader": "^4.0.0",
"mini-css-extract-plugin": "^0.4.5",
"mocha": "^5.2.0",
"node-sass": "^4.10.0",
"opn": "^5.4.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"ora": "^3.0.0",
"phantomjs-prebuilt": "^2.1.16",
"portfinder": "^1.0.19",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"semver": "^5.6.0",
"shelljs": "^0.8.3",
"sinon": "^7.1.1",
"sinon-chai": "^3.3.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"url-loader": "^1.1.2",
"vue": "^2.5.17",
"vue-loader": "^15.4.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.26.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-dev-middleware": "^3.4.0",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.1.4"
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 6.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"directories": {
"doc": "docs",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alaxgit/Vue2-Calendar.git"
},
"keywords": [
"vue2",
"calendar",
"slot"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alaxgit/Vue2-Calendar/issues"
},
"homepage": "https://github.com/alaxgit/Vue2-Calendar#readme"
}