-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.09 KB
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
{
"name": "ics-filter",
"version": "1.0.4",
"description": "A simple module that filters raw iCalendar content",
"main": "./dist/index.js",
"type": "module",
"files": [
"dist/index.*"
],
"scripts": {
"build": "npm run lint && tsc",
"lint": "biome check",
"lint:fix": "biome check --write",
"pack": "npm run build && npm pack",
"test": "npm run build && node --test dist/tests/**/*.test.js",
"test-run": "npm run build && env NODE_ENV=development node ./test.raw.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/runely/ics-filter.git"
},
"bugs": {
"url": "https://github.com/runely/ics-filter/issues"
},
"homepage": "https://github.com/runely/ics-filter/#readme",
"keywords": [
"ics",
"ical",
"icalendar",
"filter",
"calendar",
"events"
],
"author": {
"name": "Rune Moskvil Lyngås",
"email": "runely85@gmail.com",
"url": "https://github.com/runely"
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.5.2",
"@types/node": "^26.1.0",
"typescript": "^6.0.3"
}
}