-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.07 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
{
"name": "vue-jquery-calendar",
"version": "1.1.4",
"author": "Parth Faladu",
"description": "A Vue.js component for jquery datepicker.",
"license": "MIT",
"main": "dist/VueJqueryCalendar.umd.js",
"module": "dist/VueJqueryCalendar.esm.js",
"unpkg": "dist/VueJqueryCalendar.min.js",
"browser": {
"./sfc": "src/VueJqueryCalendar.vue"
},
"files": [
"dist/*",
"src/*",
"attributes.json",
"tags.json"
],
"vetur": {
"tags": "tags.json",
"attributes": "attributes.json"
},
"scripts": {
"build": "npm run build:unpkg & npm run build:es & npm run build:umd",
"build:umd": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format umd --file dist/VueJqueryCalendar.umd.js",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es --file dist/VueJqueryCalendar.esm.js",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife --file dist/VueJqueryCalendar.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Parthfaladu/vue-jquery-calendar"
},
"dependencies": {
"core-js": "^3.6.4",
"jquery": "^3.4.1",
"jquery-ui-dist": "^1.12.1"
},
"homepage": "https://github.com/Parthfaladu/vue-jquery-calendar#readme",
"keywords": [
"vue",
"vue-jquery-calendar",
"vue jquery calendar",
"calendar",
"datepicker",
"jquery ui datepicker"
],
"devDependencies": {
"@vue/cli-plugin-babel": "^4.2.0",
"@vue/cli-plugin-eslint": "^4.2.0",
"@vue/cli-service": "^4.2.0",
"@vue/eslint-config-prettier": "^6.0.0",
"cross-env": "^7.0.2",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.1.2",
"minimist": "^1.2.5",
"prettier": "^1.19.1",
"rollup": "^2.3.4",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify-es": "^0.0.1",
"rollup-plugin-vue": "^5.1.6",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
}
}