-
-
Notifications
You must be signed in to change notification settings - Fork 513
/
package.json
91 lines (91 loc) · 2.36 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
{
"name": "rrule",
"version": "2.8.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/index.js",
"types": "dist/esm/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/jakubroztocil/rrule.git"
},
"scripts": {
"prebuild": "yarn clean",
"prepublish": "yarn build",
"build": "yarn lint && yarn format-check && tsc -b tsconfig.build.json && webpack && tsc dist/esm/**/*.d.ts",
"clean": "rm -rf dist/",
"lint": "yarn eslint . --fix --config .eslintrc.js",
"format": "yarn prettier --write .",
"format-check": "yarn prettier --check .",
"run-ts": "TS_NODE_PROJECT=tsconfig.json node --loader ts-node/esm",
"test": "jest **/*.test.ts",
"test-ci": "yarn run-ts ./node_modules/.bin/nyc jest **/*.test.ts"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
},
"lint-staged": {
"*.ts": [
"yarn lint",
"yarn format"
]
},
"devDependencies": {
"@types/assert": "^1.4.3",
"@types/jest": "^29.5.8",
"@types/mockdate": "^3.0.0",
"@types/node": "^17.0.41",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"coverage": "^0.4.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^29.7.0",
"lint-staged": "^13.0.1",
"mockdate": "^3.0.5",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"source-map-loader": "^3.0.1",
"source-map-support": "^0.5.16",
"terser-webpack-plugin": "^5.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.3.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.3",
"unminified-webpack-plugin": "^3.0.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
},
"files": [
"dist",
"README.md"
],
"peerDependencies": {},
"dependencies": {
"tslib": "^2.4.0"
}
}