{ "name": "rrule-n", "version": "2.8.0", "description": "JavaScript library for working with recurrence rules for calendar dates.", "homepage": "https://git.nibgat.space/rrule/", "license": "BSD-3-Clause", "keywords": [ "dates", "recurrences", "calendar", "icalendar", "rfc" ], "author": "Jakub Roztocil, Lars Schöning, and David Golightly and nibgat", "main": "dist/es5/rrule.js", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "repository": { "type": "git", "url": "git://git.nibgat.space/nibgat-community/rrule.git" }, "scripts": { "prepare": "yarn build", "prebuild": "yarn clean", "prepublish": "yarn build", "build": "yarn lint && tsc -b tsconfig.build.json && webpack", "clean": "rimraf 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-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" } }