forked from jkbrzt/rrule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.18 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "rrule",
"version": "2.7.0",
"description": "JavaScript library for working with recurrence rules for calendar dates.",
"homepage": "http://jakubroztocil.github.io/rrule/",
"license": "BSD-3-Clause",
"keywords": [
"dates",
"recurrences",
"calendar",
"icalendar",
"rfc"
],
"author": "Jakub Roztocil, Lars Schöning, and David Golightly",
"main": "dist/es5/rrule.js",
"module": "dist/esm/src/index.js",
"typings": "dist/esm/src/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/jakubroztocil/rrule.git"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"scripts": {
"build": "yarn lint && tsc && webpack && tsc dist/esm/**/*.d.ts",
"lint": "yarn tslint --project . --fix --config tslint.json",
"test": "ts-mocha -p tsconfig.test.json **/*.test.ts",
"test-ci": "ts-mocha -p tsconfig.test.json nyc **/*.test.ts",
"prepare": "npm run build"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
},
"devDependencies": {
"@types/assert": "^1.5.6",
"@types/chai": "^4.3.1",
"@types/expect": "^24.3.0",
"@types/jquery": "^3.5.14",
"@types/luxon": "^2.3.2",
"@types/mocha": "^9.1.1",
"@types/mockdate": "^2.0.0",
"@types/node": "^17.0.31",
"chai": "^4.3.6",
"copy-webpack-plugin": "^5.1.1",
"coverage": "^0.4.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^7.0.4",
"jquery": "^3.6.0",
"mocha": "^9.2.2",
"mockdate": "^3.0.5",
"nyc": "^15.1.0",
"source-map-loader": "^0.2.4",
"source-map-support": "^0.5.16",
"ts-loader": "^6.2.1",
"ts-mocha": "^9.0.2",
"ts-node": "^10.7.0",
"tslint": "^5.20.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.6.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.10"
},
"standard": {
"ignore": [
"demo"
]
},
"files": [
"dist",
"README.md"
],
"optionalDependencies": {
"luxon": "^1.0.0 || ^2.0.0"
},
"peerDependencies": {},
"dependencies": {
"tslib": "^2.4.0"
}
}