forked from adrianlee44/ical2json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.56 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
{
"name": "ical2json",
"version": "4.0.1",
"description": "A simple node package to convert ical to JSON",
"main": "build/ical2json.js",
"types": "build/ical2json.d.ts",
"files": [
"bin/icaljson",
"build/cli.js",
"build/ical2json.js",
"build/ical2json.d.ts",
"build/utils.js"
],
"scripts": {
"compile": "tsc",
"prepublishOnly": "tsc",
"lint": "eslint . --ext .js,.ts",
"test": "npm run clean; npm run lint; tsc; npm run coverage; npm run report",
"report": "nyc report --reporter=lcov",
"coverage": "nyc ava",
"clean": "rm -rf coverage/ build/"
},
"repository": {
"type": "git",
"url": "[email protected]:adrianlee44/ical2json.git"
},
"bugs": {
"url": "https://github.com/adrianlee44/ical2json/issues"
},
"keywords": [
"ical",
"json",
"converter"
],
"engines": {
"node": ">=18.0.0"
},
"author": "Adrian Lee",
"license": "MIT",
"bin": "bin/ical2json",
"devDependencies": {
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"ava": "^6.1.3",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"execa": "^9.2.0",
"nyc": "^17.0.0",
"prettier": "^3.3.2",
"tempy": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"commander": "^12.1.0"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"nyc": {
"include": [
"src"
]
}
}