forked from kewisch/ical.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.02 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
104
105
106
107
{
"name": "ical.js",
"version": "2.1.0",
"author": "Philipp Kewisch",
"contributors": [
"Github Contributors (https://github.com/kewisch/ical.js/graphs/contributors)"
],
"description": "Javascript parser for ics (rfc5545) and vcard (rfc6350) data",
"main": "dist/ical.js",
"types": "dist/types/module.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/kewisch/ical.js.git"
},
"keywords": [
"calendar",
"iCalendar",
"jCal",
"vCard",
"jCard",
"parser"
],
"devDependencies": {
"@babel/preset-env": "^7.25.7",
"@eslint/js": "^9.12.0",
"@octokit/core": "^6.1.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@stylistic/eslint-plugin": "^2.9.0",
"benchmark": "^2.1.4",
"c8": "^10.1.2",
"chai": "^5.1.1",
"clean-jsdoc-theme": "^4.3.0",
"eslint": "^9.12.0",
"eslint-plugin-html": "^8.1.2",
"globals": "^15.10.0",
"jsdoc": "^4.0.3",
"jsdoc-tsimport-plugin": "^1.0.5",
"karma": "^6.4.4",
"karma-chai": "^0.1.0",
"karma-mocha": "^2.0.1",
"karma-sauce-launcher": "^4.3.6",
"karma-spec-reporter": "^0.0.36",
"mocha": "^10.7.3",
"node-fetch": "^3.3.2",
"rollup": "^4.24.0",
"yauzl-promise": "^4.0.0"
},
"license": "MPL-2.0",
"engine": {
"node": ">=10"
},
"scripts": {
"test": "npm run test-unit && npm run test-acceptance",
"test-unit": "c8 mocha",
"test-acceptance": "mocha test/acceptance/*_test.js",
"test-performance": "mocha --reporter test/support/perfReporter.cjs test/performance/*_test.js",
"test-browser": "karma start karma.conf.cjs",
"test-all": "npm run test-unit && npm run test-acceptance && npm run test-performance && npm run test-browser",
"build": "rollup -c",
"lint": "eslint",
"jsdoc": "rm -rf docs/api && jsdoc --configure jsdoc-prepare.json && rm -rf docs/api && jsdoc --configure jsdoc.json --verbose",
"validator": "node tools/scriptutils.js replace-unpkg tools/validator.html docs/validator.html",
"recurtester": "node tools/scriptutils.js replace-unpkg tools/recur-tester.html docs/recur-tester.html",
"ghpages": "npm run jsdoc && npm run validator && npm run recurtester"
},
"exports": {
"import": "./dist/ical.js",
"types": "./dist/types/module.d.ts"
},
"files": [
"dist/ical.js",
"dist/ical.min.js",
"dist/types/*",
"lib/ical/*.js"
],
"mocha": {
"ui": "tdd",
"require": "test/support/helper.js",
"reporter": "spec"
},
"c8": {
"include": "lib/ical",
"reporter": [
"text",
"html",
"lcov"
]
},
"saucelabs": {
"SL_Chrome": {
"base": "SauceLabs",
"browserName": "chrome"
},
"SL_Firefox": {
"base": "SauceLabs",
"browserName": "firefox"
}
},
"dependencies": {
"@babel/core": "^7.25.7",
"typescript": "^5.6.2"
},
"packageManager": "[email protected]+sha256.825003a0f561ad09a3b1ac4a3b3ea6207af2796d54f62a9420520915721f5186"
}