-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathpackage.json
69 lines (69 loc) · 1.89 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
{
"name": "vue-flatpickr-component",
"version": "9.0.8",
"description": "Vue.js component for Flatpickr date-time picker",
"main": "dist/index.js",
"types": "./types/index.d.ts",
"files": [
"src",
"dist",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ankurk91/vue-flatpickr-component.git"
},
"keywords": [
"vue",
"flatpicker",
"vue-flatpickr",
"date picker",
"time picker"
],
"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": "npm run test --watch --notify",
"start": "npm run dev",
"dev": "cross-env NODE_ENV=development webpack serve --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": "npm run test && npm run build"
},
"dependencies": {
"flatpickr": "^4.6.13"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@vue/compiler-sfc": "^3.2.40",
"@vue/test-utils": "^2.1.0",
"babel-jest": "^29.1.2",
"babel-loader": "^8.2.5",
"bootstrap": "^4.6",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"mini-css-extract-plugin": "^2.6.1",
"style-loader": "^3.3.1",
"vue": "^3.2.40",
"vue-loader": "^17.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"engines": {
"node": ">=14.13.0"
}
}