forked from jens-maus/node-ical
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"name": "node-ical",
"version": "0.11.3",
"main": "node-ical.js",
"types": "node-ical.d.ts",
"description": "NodeJS class for parsing iCalendar/ICS files",
"keywords": [
"ical",
"ics",
"calendar",
"nodejs"
],
"homepage": "https://github.com/jens-maus/node-ical",
"author": "Jens Maus <mail@jens-maus.de>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/jens-maus/node-ical.git"
},
"dependencies": {
"moment-timezone": "^0.5.31",
"request": "^2.88.2",
"rrule": "^2.6.4",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/request": "^2.48.3",
"diff": ">=3.5.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.19.1",
"underscore": "1.9.1",
"vows": "^0.8.2",
"xo": "^0.18.2",
"pre-commit": "^1.2.2"
},
"xo": {
"space": 2
},
"pre-commit": [
"lintfix"
],
"scripts": {
"test": "xo; vows test/test.js && vows test/test-async.js && printf \"\\n\"",
"lint": "xo",
"lintfix": "xo --fix",
"format-check": "prettier --config .prettierrc.js --check *.js test/*.js",
"format": "prettier --config .prettierrc.js --write *.js test/*.js",
"precommit": "npm run format && npm run fix"
},
"readmeFilename": "README.md"
}