UNPKG

2.15 kBJSONView Raw
1{
2 "name": "rrule",
3 "version": "2.6.9",
4 "description": "JavaScript library for working with recurrence rules for calendar dates.",
5 "homepage": "http://jakubroztocil.github.io/rrule/",
6 "license": "BSD-3-Clause",
7 "keywords": [
8 "dates",
9 "recurrences",
10 "calendar",
11 "icalendar",
12 "rfc"
13 ],
14 "author": "Jakub Roztocil, Lars Schöning, and David Golightly",
15 "main": "dist/es5/rrule.js",
16 "module": "dist/esm/src/index.js",
17 "typings": "dist/esm/src/index.d.ts",
18 "repository": {
19 "type": "git",
20 "url": "git://github.com/jakubroztocil/rrule.git"
21 },
22 "husky": {
23 "hooks": {
24 "pre-commit": "yarn lint"
25 }
26 },
27 "scripts": {
28 "build": "yarn lint && tsc && webpack && tsc dist/esm/**/*.d.ts",
29 "lint": "yarn tslint --project . --fix --config tslint.json",
30 "test": "TS_NODE_PROJECT=tsconfig.test.json mocha **/*.test.ts",
31 "test-ci": "TS_NODE_PROJECT=tsconfig.test.json nyc mocha **/*.test.ts"
32 },
33 "nyc": {
34 "extension": [
35 ".ts",
36 ".tsx"
37 ],
38 "exclude": [
39 "**/*.d.ts"
40 ],
41 "reporter": [
42 "html"
43 ],
44 "all": true
45 },
46 "devDependencies": {
47 "@types/assert": "^1.4.3",
48 "@types/chai": "^4.2.7",
49 "@types/jquery": "^3.3.29",
50 "@types/luxon": "^1.21.0",
51 "@types/mocha": "^5.2.5",
52 "@types/mockdate": "^2.0.0",
53 "@types/node": "^12.12.18",
54 "chai": "^4.2.0",
55 "copy-webpack-plugin": "^5.1.1",
56 "coverage": "^0.4.1",
57 "html-webpack-plugin": "^3.2.0",
58 "husky": "^3.1.0",
59 "jquery": "^3.3.1",
60 "mocha": "^6.2.2",
61 "mockdate": "^2.0.5",
62 "nyc": "^14.1.1",
63 "source-map-loader": "^0.2.4",
64 "source-map-support": "^0.5.16",
65 "ts-loader": "^6.2.1",
66 "ts-node": "^8.5.4",
67 "tslint": "^5.20.1",
68 "tslint-eslint-rules": "^5.4.0",
69 "typescript": "^3.7.3",
70 "uglifyjs-webpack-plugin": "^2.2.0",
71 "webpack": "^4.41.3",
72 "webpack-cli": "^3.3.10"
73 },
74 "standard": {
75 "ignore": [
76 "demo"
77 ]
78 },
79 "files": [
80 "dist",
81 "README.md"
82 ],
83 "optionalDependencies": {
84 "luxon": "^1.21.3"
85 },
86 "peerDependencies": {},
87 "dependencies": {
88 "tslib": "^1.10.0"
89 }
90}