forked from ankurk91/vue-flatpickr-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 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
{
"name": "vue-flatpickr-component",
"version": "8.1.0",
"description": "Vue.js component for Flatpickr date-time picker",
"main": "dist/vue-flatpickr.js",
"browser": "dist/vue-flatpickr.min.js",
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ankurk91/vue-flatpickr-component.git"
},
"keywords": [
"vue",
"flatpickr",
"vue-flatpickr",
"datepicker",
"timepicker"
],
"author": "ankurk91",
"license": "MIT",
"bugs": {
"url": "https://github.com/ankurk91/vue-flatpickr-component/issues"
},
"homepage": "https://github.com/ankurk91/vue-flatpickr-component",
"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"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"bootstrap": "^4.1.3",
"clean-webpack-plugin": "^1.0.0",
"cross-env": "^5.2.0",
"css-loader": "^2.0.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.5.0",
"style-loader": "^0.23.1",
"unminified-webpack-plugin": "^2.0.0",
"vee-validate": "^2.1.4",
"vue": "^2.5.21",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.5.21",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"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/"
]
}
}