-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
113 lines (113 loc) · 2.44 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
{
"author": {
"name": "Manuk Minasyan",
"email": "[email protected]",
"url": "https://github.com/ManukMinasyan"
},
"name": "vue-functional-calendar",
"description": "Lightweight, high-performance calendar component based on Vue.js",
"version": "3.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ManukMinasyan/vue-functional-calendar.git"
},
"keywords": [
"vue",
"calendar",
"component",
"vue-component",
"functional",
"date picker",
"date range",
"range",
"multiple calendars",
"multiple",
"modal calendar",
"modal",
"inline",
"date",
"change month",
"change year",
"picker",
"day",
"month",
"year",
"time",
"add",
"cli",
"command",
"keys",
"keyword",
"keywords",
"line",
"package",
"pkg"
],
"private": false,
"main": "./index.js",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --dest dist --name FunctionalCalendar src/components/FunctionalCalendar.vue",
"test": "npm run build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"core-js": "^2.6.5",
"vue": "^2.5.21"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@vue/babel-preset-app": "^3.7.0",
"@vue/cli-plugin-babel": "^3.7.0",
"@vue/cli-plugin-eslint": "^3.7.0",
"@vue/cli-service": "^3.7.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"css-loader": "^1.0.1",
"grunt": ">=0.4.0",
"grunt-coveralls": "^2.0.0",
"jest": "^16.0.2",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.1.0",
"sass-resources-loader": "^1.3.4",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"terser": "3.14.1",
"thread-loader": "^1.2.0",
"vue-loader": "^15.4.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.21"
},
"resolutions": {
"terser": "3.14.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}