-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.74 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "fullcalendar",
"title": "FullCalendar",
"description": "Full-sized drag & drop event calendar",
"keywords": [
"calendar",
"event",
"full-sized",
"jquery-plugin"
],
"homepage": "https://fullcalendar.io/",
"bugs": "https://fullcalendar.io/wiki/Reporting-Bugs/",
"repository": {
"type": "git",
"url": "https://github.com/fullcalendar/fullcalendar.git"
},
"license": "MIT",
"author": {
"name": "Adam Shaw",
"email": "[email protected]",
"url": "http://arshaw.com/"
},
"copyright": "2019 Adam Shaw",
"peerDependencies": {
"jquery": "2 - 3",
"moment": "^2.20.1"
},
"version": "3.10.5",
"releaseDate": "2021-11-02",
"devDependencies": {
"@types/jquery": "2.0.47",
"awesome-typescript-loader": "^3.5.0",
"bootstrap": "^3.3.7",
"check-node-version": "^4.1.0",
"components-jqueryui": "^1.12.1",
"css-loader": "^0.28.10",
"del": "^2.2.1",
"dts-generator": "^2.1.0",
"eslint": "^4.18.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"gulp-cssmin": "^0.1.7",
"gulp-eslint": "^4.0.0",
"gulp-filter": "^4.0.0",
"gulp-modify-file": "^1.0.0",
"gulp-rename": "^1.2.2",
"gulp-shell": "^0.6.5",
"gulp-tslint": "^8.1.3",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.11",
"gulp-zip": "^3.2.0",
"jasmine-core": "2.5.2",
"jasmine-fixture": "^2.0.0",
"jasmine-jquery": "^2.1.1",
"jquery": "2 - 3",
"jquery-mockjax": "^2.2.0",
"jquery-simulate": "^1.0.2",
"karma": "^0.13.22",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-verbose-reporter": "0.0.6",
"moment": "^2.20.1",
"moment-timezone": "^0.5.5",
"native-promise-only": "^0.8.1",
"node-sass": "^4.14.1",
"phantomjs-prebuilt": "^2.1.7",
"sass-loader": "^6.0.7",
"tslib": "^1.8.0",
"tslint": "^5.12.1",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.7.2",
"webpack": "^3.11.0",
"webpack-stream": "^4.0.2",
"yargs": "^4.8.1"
},
"main": "dist/fullcalendar.js",
"types": "dist/fullcalendar.d.ts",
"files": [
"dist/*.js",
"dist/*.css",
"dist/*.d.ts",
"dist/locale/*.js",
"README.*",
"LICENSE.*",
"CHANGELOG.*",
"CONTRIBUTING.*"
],
"scripts": {
"clean": "gulp clean",
"dist": "npm run check-env && gulp dist",
"lint": "gulp lint-and-example-repos",
"test": "gulp test:single",
"check-env": "check-node-version --node 11"
}
}