forked from MikaelEdebro/vue-airbnb-style-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.65 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.65 KB
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
{
"name": "vue-airbnb-style-datepicker",
"version": "4.2.0",
"description": "A VueJs version of the popular AirBnb datepicker",
"main": "./dist/main.js",
"module": "./dist/main.mjs",
"unpkg": "dist/main.js",
"repository": {
"url": "MikaelEdebro/vue-airbnb-style-datepicker",
"type": "git"
},
"engines": {
"node": ">=16.13.0",
"npm": ">=6.14.6"
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"dev": "vite",
"prepare": "npm run build",
"test": "npm run unit",
"test:watch": "npm run unit -- --watch",
"unit": "vitest run",
"test:debug": "node --inspect --inspect-brk node_modules/.bin/vitest run"
},
"author": "MikaelEdebro <mikael.edebro@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/coverage-c8": "^0.27.1",
"@vue/test-utils": "^2.0.2",
"babel-eslint": "^8.2.2",
"core-js": "^3.26.0",
"date-fns": "^1.29.0",
"eslint": "^4.19.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.3.0",
"lodash.memoize": "^4.1.2",
"prettier": "^1.15.2",
"pretty-quick": "^1.8.0",
"rimraf": "^2.6.2",
"sass": "^1.3.0",
"sass-loader": "^9.0.3",
"vite": "^4.0.4",
"vitest": "^0.27.1"
},
"peerDependencies": {
"vue": "^3.2.33"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}