UNPKG

@heinlein-video/rrule

Version:

rrule fork. Includes the src/ folder for typescript sourceMaps

92 lines (91 loc) 2.45 kB
{ "name": "@heinlein-video/rrule", "version": "2.7.999", "description": "rrule fork. Includes the src/ folder for typescript sourceMaps", "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", "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": "yarn run-ts ./node_modules/.bin/mocha **/*.test.ts", "test-ci": "yarn run-ts ./node_modules/.bin/nyc yarn run-ts ./node_modules/.bin/mocha **/*.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/chai": "^4.2.7", "@types/mocha": "^9.1.1", "@types/mockdate": "^3.0.0", "@types/node": "^17.0.41", "@typescript-eslint/eslint-plugin": "^5.27.1", "@typescript-eslint/parser": "^5.27.1", "chai": "^4.2.0", "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", "lint-staged": "^13.0.1", "mocha": "^10.0.0", "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-loader": "^9.3.0", "ts-node": "^10.8.1", "typescript": "^4.7.3", "webpack": "^5.73.0", "webpack-cli": "^4.9.2" }, "files": [ "dist", "README.md", "src/" ], "peerDependencies": {}, "dependencies": { "tslib": "^2.4.0" } }