-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathpackage.json
75 lines (75 loc) · 2.08 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
{
"name": "vue-flatpickr-component",
"version": "11.0.5",
"description": "Vue.js component for Flatpickr date-time picker",
"main": "dist/index.umd.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/index.umd.js",
"types": "./dist/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 --runInBand",
"test:watch": "npm run test --watch --notify",
"start": "npm run dev",
"dev": "webpack serve --node-env=development --progress --hot --config=webpack.config.dev.js",
"docs": "webpack --node-env=production --config=webpack.config.dev.js --progress --mode=production",
"build:esm": "tsc -m es6 --outDir ./dist/esm",
"build:umd": "webpack --node-env=production --progress --mode=production",
"build": "npm run build:umd && npm run build:esm",
"prepublishOnly": "npm run test && npm run build"
},
"dependencies": {
"flatpickr": "^4.6.13"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@vue/test-utils": "^2.4.6",
"bootstrap": "^4.6.2",
"css-loader": "^7.1.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.9.1",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"vue": "^3.4.38",
"vue-loader": "^17.4.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"engines": {
"node": ">=14.13.0"
}
}