-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
126 lines (126 loc) · 3.9 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
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@sum.cumo/vue-datepicker",
"version": "5.0.0",
"description": "A simple, but powerful, Vue.js datepicker component. Supports disabling of dates, inline mode, translations & custom slots",
"license": "Apache-2.0",
"homepage": "https://github.com/sumcumo/vue-datepicker",
"repository": {
"type": "git",
"url": "git@github.com:sumcumo/vue-datepicker.git"
},
"author": "sum.cumo GmbH",
"keywords": [
"vue",
"datepicker",
"date-picker",
"calendar",
"keyboard navigation",
"typeable"
],
"main": "dist/vue-datepicker.js",
"module": "dist/vue-datepicker.esm.js",
"unpkg": "dist/vue-datepicker.min.js",
"sideEffects": [
"*.css"
],
"files": [
"src",
"dist",
"LICENSE"
],
"scripts": {
"prepare": "npm run build",
"build": "npm run clear && npm run build:app && npm run build:locale",
"build:app": "vite build -c scripts/build/default.js && vite build -c scripts/build/cjs.js && vite build -c scripts/build/esm.js",
"build:locale": "babel-node scripts/build/locale.js",
"clear": "rm -rf dist/*",
"audit": "npm audit --registry=https://registry.npmjs.org",
"serve": "vite serve ./example",
"serve:e2e": "vite serve ./example-e2e --port=8080",
"lint": "eslint --ext .js,.vue src test/unit/specs",
"test": "vitest run --coverage",
"test:watch": "vitest",
"test:e2e": "npx cypress open",
"test:e2e:ci": "npx cypress run --spec **/*.feature",
"release": "standard-version",
"prerelease": "standard-version --dry-run",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"pre-commit": [
"lint",
"test"
],
"prettier": "./prettier.js",
"peerDependencies": {
"vue": "^3.2.41"
},
"devDependencies": {
"@babel/core": "7.20.2",
"@babel/eslint-parser": "7.19.1",
"@babel/node": "7.20.2",
"@babel/plugin-transform-runtime": "7.19.6",
"@babel/preset-env": "7.20.2",
"@rollup/plugin-alias": "4.0.2",
"@rollup/plugin-babel": "6.0.2",
"@rollup/plugin-commonjs": "23.0.2",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-replace": "5.0.1",
"@vitejs/plugin-vue": "3.2.0",
"@vitest/coverage-c8": "0.25.2",
"@vue/eslint-config-prettier": "7.0.0",
"@vue/test-utils": "2.2.3",
"@vuepress/plugin-register-components": "2.0.0-beta.53",
"@vuepress/plugin-search": "2.0.0-beta.53",
"autoprefixer": "10.4.13",
"babel-core": "7.0.0-bridge.0",
"chalk": "4.1.2",
"cleave.js": "1.6.0",
"core-js": "3.26.1",
"cypress": "11.1.0",
"cypress-cucumber-preprocessor": "4.3.1",
"cypress-plugin-tab": "1.0.5",
"date-fns": "2.29.3",
"eslint": "8.28.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-friendly-formatter": "4.0.1",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-webpack": "0.13.2",
"eslint-plugin-compat": "4.0.2",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-html": "7.1.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-vitest": "0.0.19",
"eslint-plugin-vue": "9.7.0",
"jsdom": "20.0.2",
"pre-commit": "1.2.2",
"prettier": "2.7.1",
"rollup": "2.79.1",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-vue": "6.0.0",
"sass": "1.56.1",
"semver": "7.3.8",
"standard-version": "9.5.0",
"vee-validate": "2.2.15",
"vite": "3.2.4",
"vitest": "0.25.2",
"vue": "3.2.45",
"vuepress": "2.0.0-beta.53",
"vuex": "4.1.0"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true,
"stepDefinitions": "test/e2e/specs",
"commonPath": "test/e2e/common",
"cucumberJson": {
"generate": true,
"outputFolder": "test/e2e/cucumber-json",
"filePrefix": "",
"fileSuffix": ".cucumber"
}
}
}