-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.82 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.82 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
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
{
"name": "csv2ical",
"description": "CSV to iCal converter - Convert CSV files to iCalendar format with ease",
"author": "Amine Benseddik <amine.benseddik@gmail.com>",
"homepage": "https://github.com/amine7536/csv2ical.js",
"license": "MIT",
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"bin": {
"csv2ical": "./dist/csv2ical.js"
},
"main": "./dist/csv2ical.js",
"types": "./dist/csv2ical.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"csv-parse": "^5.5.6",
"ical-generator": "^7.2.0",
"winston": "^3.14.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@types/node": "^20.14.15",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.0.0",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.5.4",
"vitest": "^4.0.16"
},
"repository": {
"type": "git",
"url": "git@github.com:amine7536/csv2ical.js.git"
},
"keywords": [
"csv",
"ical",
"calendar",
"ics",
"converter",
"parser",
"typescript",
"cli"
]
}