forked from CroudTech/vue-fullcalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.52 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-full-calendar",
"version": "2.8.7",
"description": "FullCalendar wrapper for vue",
"main": "index.js",
"browserify": {
"transform": [
"babelify",
"vueify"
]
},
"scripts": {
"test": "jest -i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CroudSupport/vue-fullcalendar.git"
},
"keywords": [
"vue",
"fullcalendar",
"calendar",
"js"
],
"author": "Brock Reece",
"license": "ISC",
"bugs": {
"url": "https://github.com/CroudSupport/vue-fullcalendar/issues"
},
"homepage": "https://github.com/CroudSupport/vue-fullcalendar#readme",
"dependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"fullcalendar": "3.10.2",
"jquery": "3.5.1",
"lodash.defaultsdeep": "^4.6.0",
"moment": "^2.20.1",
"script-loader": "^0.7.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-preset-stage-2": "^6.24.1",
"jest": "^21.2.1",
"jest-serializer-vue": "^0.3.0",
"jest-vue": "^0.8.2",
"vue": "^2.5.4",
"vue-template-compiler": "^2.5.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"mapCoverage": true
}
}