-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "icalts",
"version": "0.0.2",
"description": "iCal parser written in pure typescript",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"docs": "npx typedoc --plugin typedoc-plugin-markdown",
"dev": "npx ts-node-dev src/index.ts",
"tslint": "npx tslint -p tsconfig.json",
"tslint-fix": "npx tslint --fix -p tsconfig.json",
"test": "nyc jest",
"posttest": "nyc report --reporter=json",
"prepare": "npm run test",
"prepublishOnly": "npm run test && npx tsc"
},
"keywords": [
"ical",
"parser",
"typescript",
"ics",
"calendar"
],
"author": "Eugene Hauptmann",
"repository": {
"type": "git",
"url": "https://github.com/eugenehp/icalts.git"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^22.0.2",
"codecov": "^3.8.3",
"jest": "^26.6.3",
"nyc": "^17.0.0",
"ts-jest": "^26.4.4",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tslib": "^2.1.0",
"tslint": "^6.1.3",
"typedoc": "^0.27.2",
"typedoc-plugin-markdown": "^4.0.3",
"typescript": "^4.8.3"
}
}