UNPKG

rrule

Version:

JavaScript library for working with recurrence rules for calendar dates.

88 lines (87 loc) 2.09 kB
{ "name": "rrule", "version": "2.5.5", "description": "JavaScript library for working with recurrence rules for calendar dates.", "homepage": "http://jakubroztocil.github.io/rrule/", "license": "SEE LICENSE IN LICENSE", "keywords": [ "dates", "recurrences", "calendar", "icalendar", "rfc" ], "author": "Jakub Roztocil and Lars Schöning", "main": "dist/es5/rrule.js", "module": "dist/esm/index.js", "typings": "dist/esm/index.d.ts", "repository": { "type": "git", "url": "git://github.com/jakubroztocil/rrule.git" }, "husky": { "hooks": { "pre-commit": "yarn build && git add dist/" } }, "scripts": { "build": "yarn lint && tsc && webpack && tsc dist/esm/*.d.ts", "lint": "yarn tslint --project . --fix --config tslint.json", "test": "TS_NODE_PROJECT=tsconfig.test.json mocha **/*.test.ts", "test-ci": "TS_NODE_PROJECT=tsconfig.test.json nyc mocha **/*.test.ts" }, "nyc": { "extension": [ ".ts", ".tsx" ], "exclude": [ "**/*.d.ts" ], "reporter": [ "html" ], "all": true }, "devDependencies": { "@types/assert": "^0.0.31", "@types/chai": "^4.1.4", "@types/luxon": "^1.2.2", "@types/mocha": "^5.2.5", "@types/mockdate": "^2.0.0", "@types/node": "^10.5.4", "chai": "^4.1.2", "coffee-loader": "^0.9.0", "coffeescript": "^2.3.1", "copy-webpack-plugin": "^4.5.2", "coverage": "^0.0.0", "html-webpack-plugin": "^3.2.0", "husky": "^1.0.0-rc.13", "jquery": "^3.3.1", "mocha": "^5.2.0", "mockdate": "^2.0.2", "nyc": "^12.0.2", "source-map-loader": "^0.2.3", "source-map-support": "^0.5.8", "ts-loader": "^4.4.2", "ts-node": "^7.0.0", "tslint": "^5.11.0", "tslint-eslint-rules": "^5.4.0", "typescript": "^3.0.1", "webpack": "^4.16.3", "webpack-cli": "^3.1.0" }, "standard": { "ignore": [ "demo" ] }, "files": [ "dist", "README.md" ], "optionalDependencies": { "luxon": "^1.3.3" }, "peerDependencies": {} }