-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.41 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
{
"name": "@harryy/vue-datepicker",
"version": "0.0.1",
"description": "Vue.js component for Flatpickr",
"main": "dist/vue-datepicker.js",
"browser": "dist/vue-datepicker.min.js",
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/harryy2510/vue-datepicker.git"
},
"keywords": [
"vue",
"flatpickr",
"vue-datepicker",
"datepicker"
],
"author": "ankurk91",
"license": "MIT",
"bugs": {
"url": "https://github.com/harryy2510/vue-datepicker/issues"
},
"homepage": "https://github.com/harryy2510/vue-datepicker",
"scripts": {
"test": "jest",
"test:watch": "yarn run test --watch --notify",
"start": "yarn run dev",
"dev": "cross-env NODE_ENV=development webpack-dev-server --progress --hot --config=webpack.config.dev.js",
"docs": "cross-env NODE_ENV=production webpack --config=webpack.config.dev.js --progress --mode production",
"build": "cross-env NODE_ENV=production webpack --progress --mode production",
"prepublishOnly": "yarn run test && yarn run build"
},
"dependencies": {
"flatpickr": "^4.5.1",
"lodash": "4.17.11",
"moment": "2.24.0",
"popper": "1.0.1",
"tippy.js": "4.3.1",
"wenk": "1.0.8"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"bootstrap": "^4.2.1",
"clean-webpack-plugin": "^1.0.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.1.0",
"mini-css-extract-plugin": "^0.5.0",
"style-loader": "^0.23.1",
"unminified-webpack-plugin": "^2.0.0",
"vue": "^2.6.4",
"vue-loader": "^15.6.2",
"vue-template-compiler": "^2.6.4",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"peerDependencies": {
"vue": "^2.0.0"
},
"engines": {
"node": ">= 4.2.0",
"npm": ">= 3.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"jsx",
"node",
"vue"
],
"transform": {
"^.+\\.js$": "babel-jest"
},
"collectCoverage": true,
"testURL": "http://localhost",
"watchPathIgnorePatterns": [
"<rootDir>/examples/",
"/node_modules/"
]
}
}