forked from nathanreyes/v-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.66 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
{
"name": "v-calendar",
"version": "2.1.3",
"private": false,
"description": "A clean and extendable plugin for building simple attributed calendars in Vue.js.",
"author": "Nathan Reyes <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve src/lib.js",
"build": "yarn build:lib && yarn build:calendar && yarn build:date-picker && yarn build:popover && yarn build:popover-row",
"lint": "vue-cli-service lint",
"build:calendar": "vue-cli-service build --target lib --dest lib/components --name calendar src/components/Calendar.vue",
"build:date-picker": "vue-cli-service build --no-clean --target lib --dest lib/components --name date-picker src/components/DatePicker.vue",
"build:docs": "vuepress build docs",
"build:lib": "vue-cli-service build --target lib src/lib.js --mode production",
"build:popover": "vue-cli-service build --no-clean --target lib --dest lib/components --name popover src/components/Popover.vue",
"build:popover-row": "vue-cli-service build --no-clean --target lib --dest lib/components --name popover-row src/components/PopoverRow.vue",
"deploy:docs": "vuepress build docs && netlify deploy",
"dev": "vuepress dev docs",
"test": "vue-cli-service test:unit --watch"
},
"main": "lib/v-calendar.umd.min.js",
"files": [
"src",
"lib"
],
"dependencies": {
"core-js": "^3.6.5",
"date-fns": "^2.8.1",
"date-fns-tz": "^1.0.12",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/plugin-transform-arrow-functions": "^7.8.3",
"@fullhuman/postcss-purgecss": "^1.3.0",
"@popperjs/core": "^2.4.0",
"@vue/cli-plugin-babel": "~4.5.4",
"@vue/cli-plugin-eslint": "~4.5.4",
"@vue/cli-plugin-unit-jest": "~4.5.4",
"@vue/cli-service": "~4.5.4",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/test-utils": "1.0.3",
"@vuepress/plugin-google-analytics": "^1.2.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.1.0",
"babel-jest": "^22.0.4",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-vue": "^6.2.2",
"postcss-preset-env": "^6.7.0",
"tailwindcss": "^1.5.1",
"vuepress": "1.2.0",
"webpack-bundle-analyzer": "^3.8.0"
},
"peerDependencies": {
"@popperjs/core": "^2.4.0",
"vue": "^2.5.18"
},
"browserslist": [
">1%",
"not ie 11",
"not op_mini all"
],
"homepage": "https://vcalendar.io",
"keywords": [
"vue",
"vuejs",
"plugin",
"calendar",
"datepicker",
"date picker",
"highlights",
"dots",
"bars",
"indicators"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nathanreyes/v-calendar"
}
}