This repository has been archived by the owner on Apr 17, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
108 lines (108 loc) · 3.27 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
{
"name": "vue3-date-time-picker",
"version": "2.8.2",
"description": "Datepicker component for Vue 3",
"author": "Vuepic",
"private": false,
"license": "MIT",
"homepage": "https://vue3datepicker.com",
"main": "dist/vue3-date-time-picker.ssr.js",
"browser": "dist/vue3-date-time-picker.esm.js",
"module": "dist/vue3-date-time-picker.esm.js",
"unpkg": "dist/vue3-date-time-picker.min.js",
"style": "dist/main.css",
"sass": "src/Vue3DatePicker/style/main.scss",
"files": [
"dist/*",
"src/**/*",
"index.d.ts",
"postinstall.js"
],
"scripts": {
"serve": "vue-cli-service serve dev/serve.ts",
"build": "run-s clean build:rollup build:css",
"clean": "rimraf ./dist",
"build:rollup": "cross-env NODE_ENV=production node_modules/.bin/rollup --config build/rollup.config.js",
"build:css": "cross-env NODE_ENV=production node_modules/.bin/sass src/Vue3DatePicker/style/main.scss dist/main.css --style compressed",
"test": "cross-env NODE_ENV=test node_modules/.bin/vue-cli-service test:unit",
"lint": "run-s lint:style lint:vue",
"lint:style": "stylelint --fix \"src/**/*.scss\"",
"lint:vue": "eslint --fix \"src/**\" --ignore-pattern \"src/**/*.scss\"",
"postinstall": "node postinstall.js"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"@vue/cli-plugin-babel": "^5.0.1",
"@vue/cli-plugin-typescript": "^5.0.1",
"@vue/cli-plugin-unit-jest": "^5.0.1",
"@vue/cli-service": "^5.0.1",
"@vue/compiler-sfc": "^3.2.31",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.0.0-rc.18",
"@vue/vue3-jest": "^27.0.0-alpha.4",
"babel-jest": "^27.5.1",
"core-js": "^3.21.1",
"cross-env": "^7.0.3",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.5.0",
"jest": "^27.5.1",
"minimist": "^1.2.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.8",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.70.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"stylelint": "^14.5.3",
"stylelint-config-standard-scss": "^3.0.0",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2",
"vue": "^3.2.31",
"vue-eslint-parser": "^8.3.0"
},
"dependencies": {
"date-fns": "^2.28.0"
},
"peerDependencies": {
"vue": ">=3.2.0"
},
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "https://github.com/Vuepic/vue3-date-time-picker.git"
},
"types": "index.d.ts",
"keywords": [
"calendar",
"vue",
"vue3-datepicker",
"vue-datepicker",
"datepicker",
"datetimepicker",
"daterangepicker",
"timepicker"
],
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}