forked from fullcalendar/fullcalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.28 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
{
"private": true,
"name": "@fullcalendar/standard-features",
"description": "Full-sized drag & drop event calendar in JavaScript",
"version": "0.0.0",
"keywords": [
"calendar",
"event",
"full-sized",
"fullcalendar"
],
"homepage": "https://fullcalendar.io",
"bugs": "https://fullcalendar.io/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": "2023 Adam Shaw",
"devDependencies": {
"@fullcalendar/standard-scripts": "*"
},
"scripts": {
"postinstall": "standard-scripts postinstall",
"lint": "standard-scripts lint",
"build": "standard-scripts build",
"dev": "standard-scripts dev",
"test": "standard-scripts test",
"test:dev": "standard-scripts test --dev",
"clean": "standard-scripts clean",
"ci": "pnpm run lint && pnpm run build && pnpm run test"
},
"type": "module",
"engines": {
"pnpm": ">=7.9.5"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"postcss"
]
},
"patchedDependencies": {
"[email protected]": "scripts/patches/[email protected]"
}
}
}