-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.27 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
{
"name": "timezones-ical-library",
"version": "1.9.1",
"engines": {
"node": ">=18.17.0",
"npm": ">=9.6.7"
},
"description": "Easy direct access to the most recent official timezone information for iCalendar files via JavaScript",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist",
"test",
"index.d.ts"
],
"types": "index.d.ts",
"jsdelivr": "./dist/tzlib.js",
"repository": {
"type": "git",
"url": "https://github.com/add2cal/timezones-ical-library.git"
},
"keywords": [
"ical",
"timezone",
"generator",
"builder",
"icalendar",
"google",
"apple",
"component",
"module",
"package",
"free",
"snippet",
"outlook",
"microsoft",
"javascript",
"node",
"react",
"IANA",
"ics",
"olson",
"vzic",
"calendar"
],
"author": {
"name": "Jens Kuerschner",
"url": "https://jekuer.com/"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/add2cal/timezones-ical-library/issues"
},
"homepage": "https://tz.add-to-calendar-technology.com/",
"scripts": {
"release": "node set-release.js",
"stylelint": "npx stylelint demo_assets/css/*.css",
"stylelint:fix": "npm run stylelint -- --fix",
"eslint": "npx eslint .",
"eslint:fix": "npm run eslint -- --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run eslint:fix && npm run prettier:fix && npm run stylelint:fix",
"test": "node test/tests.js",
"build": "npx grunt"
},
"devDependencies": {
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-commonjs": "^1.0.2",
"eslint-plugin-security": "^3.0.1",
"glob": "^11.0.0",
"grunt": ">=1.6.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^5.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-file-creator": "^0.1.3",
"grunt-version": "^3.0.1",
"prettier": "^3.4.2",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"typescript-eslint": "^8.18.1"
}
}