-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
103 lines (103 loc) · 2.43 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
{
"name": "vue-datepicker-ui",
"author": "edisdev <[email protected]>",
"version": "2.3.0",
"private": false,
"main": "./lib/vuedatepickerui.umd.js",
"license": "MIT",
"description": "A Datepicker Component For Vue",
"keywords": [
"vue",
"datepicker",
"vue datepicker",
"date-picker",
"calendar",
"component"
],
"homepage": "https://edisdev.github.io/vue-datepicker-ui/",
"repository": {
"type": "git",
"url": "git+https://github.com/edisdev/vue-datepicker-ui.git"
},
"scripts": {
"test:unit": "vue-cli-service test:unit -u",
"lint": "vue-cli-service lint",
"package": "vue-cli-service build NODE_ENV=production --target lib --name vuedatepickerui --entry ./src/components/datepicker.vue --dest ./lib",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:serve": "vuepress serve docs"
},
"dependencies": {
"calendar-data-generate": "^1.0.3"
},
"peerDependencies": {
"vue": "^2.6.14"
},
"devDependencies": {
"@mr-hope/vuepress-plugin-copy-code": "^1.19.1",
"@vue/cli-plugin-babel": "^3.0.0",
"@vue/cli-plugin-eslint": "^3.0.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "^3.0.0",
"@vue/eslint-config-standard": "^6.0.0",
"@vue/test-utils": "^1.2.1",
"babel-eslint": "^10.0.1",
"eslint": "^7.29.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.11.1",
"lint-staged": "^11.0.0",
"vue-template-compiler": "^2.6.14",
"vuepress": "^1.8.2",
"vuepress-theme-default-prefers-color-scheme": "^2.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}