forked from mathieustan/vue-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.36 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
{
"name": "@mathieustan/vue-datepicker",
"description": "A clean datepicker made with VueJs",
"version": "0.2.11",
"author": "Mathieu Stanowski <[email protected]>",
"keywords": [
"vue",
"vuejs",
"javascript",
"vue-component",
"date",
"month",
"quarter",
"picker",
"datepicker",
"monthpicker",
"quarterpicker"
],
"license": "MIT",
"files": [
"dist/*.js",
"dist/*.css",
"src/*"
],
"main": "dist/vue-datepicker.umd.js",
"module": "dist/vue-datepicker.esm.js",
"unpkg": "dist/vue-datepicker.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mathieustan/vue-datepicker.git"
},
"bugs": {
"url": "https://github.com/mathieustan/vue-datepicker/issues"
},
"homepage": "https://vue-datepicker.netlify.com/",
"scripts": {
"commit": "git cz",
"dev": "npm run build:es -- --watch",
"build": "npm run build:browser && npm run build:es && npm run build:umd",
"build:doc": "cd doc-src && npm install && npm run build",
"build:browser": "rollup --config build/rollup.config.browser.js",
"build:es": "rollup --config build/rollup.config.es.js",
"build:umd": "rollup --config build/rollup.config.umd.js",
"send:coverage": "cat ./tests/coverage/lcov.info | codacy-coverage",
"lint": "vue-cli-service lint --ext .js,.vue src tests/unit/* build/*",
"lint:fix": "npm run lint --fix",
"test:client": "vue-cli-service test:unit",
"prepublishOnly": "npm run lint:fix && npm run test:client && npm run build"
},
"dependencies": {
"body-scroll-lock": "^2.6.1",
"dayjs": "1.8.24"
},
"peerDependencies": {
"core-js": "^2.6.5",
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.6.2",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.2",
"@vue/cli-plugin-babel": "^3.7.0",
"@vue/cli-plugin-eslint": "^3.7.0",
"@vue/cli-plugin-unit-jest": "^3.7.0",
"@vue/cli-service": "^3.7.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-dynamic-import-node-babel-7": "^2.0.7",
"codacy-coverage": "^3.4.0",
"commitizen": "^4.1.2",
"core-js": "^2.6.5",
"cssnano": "^4.1.10",
"cz-customizable": "^6.2.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"husky": "^4.2.5",
"mockdate": "^2.0.2",
"node-sass": "^4.14.1",
"postcss-nested": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"postcss-simple-vars": "^5.0.2",
"rollup": "^1.14.6",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-css-porter": "^0.1.2",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-postcss": "^3.1.1",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-visualizer": "^4.0.4",
"rollup-plugin-vue": "4.2.0",
"sass": "^1.26.5",
"sass-loader": "^7.1.0",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"directories": {
"test": "tests"
}
}