forked from fullcalendar/fullcalendar-vue
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.09 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
{
"name": "@fullcalendar/vue",
"version": "5.5.0",
"title": "FullCalendar Vue Component",
"description": "An official FullCalendar component for Vue",
"keywords": [
"vue",
"calendar",
"fullcalendar"
],
"docs": "https://fullcalendar.io/docs/vue",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fullcalendar/fullcalendar-vue.git"
},
"scripts": {
"tsc": "tsc -p tsconfig.json",
"clean": "rm -rf dist tmp",
"watch": "tsc -p tsconfig.json --watch",
"build": "tsc -p tsconfig.json && rollup -c && npm run minify",
"minify": "npx terser --compress --mangle --comments false --output dist/main.global.min.js -- dist/main.global.js",
"test": "concurrently 'webpack --watch' 'karma start karma.config.js'",
"test:ci": "webpack && karma start karma.config.js --browsers ChromeHeadless --single-run --no-auto-watch",
"ci": "./scripts/ci.sh"
},
"dependencies": {
"@fullcalendar/core": "~5.5.0",
"tslib": "^2.0.3"
},
"peerDependencies": {
"vue": "^2.6.12"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.8.4",
"@babel/runtime": "^7.12.1",
"@fullcalendar/daygrid": "~5.5.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@types/estree": "^0.0.45",
"@types/node": "14.10.0",
"@vue/test-utils": "^1.0.3",
"babel-loader": "^8.1.0",
"concurrently": "^5.3.0",
"css-loader": "^4.3.0",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "^0.0.32",
"rollup": "^2.21.0",
"source-map-loader": "^1.1.1",
"style-loader": "^2.0.0",
"terser": "^4.8.0",
"typescript": "^4.0.5",
"vue": "^2.6.12",
"vue-loader": "^15.9.5",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.5.0",
"webpack-cli": "^4.1.0"
},
"main": "dist/main.cjs.js",
"module": "dist/main.js",
"types": "dist/main.d.ts",
"jsdelivr": "dist/main.global.min.js",
"files": [
"dist",
"src"
]
}