package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "rrule-n",
  3. "version": "2.8.0",
  4. "description": "JavaScript library for working with recurrence rules for calendar dates.",
  5. "homepage": "https://git.nibgat.space/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 and nibgat",
  15. "main": "dist/es5/rrule.js",
  16. "module": "dist/esm/index.js",
  17. "types": "dist/esm/index.d.ts",
  18. "repository": {
  19. "type": "git",
  20. "url": "git://git.nibgat.space/nibgat-community/rrule.git"
  21. },
  22. "scripts": {
  23. "prebuild": "yarn clean",
  24. "prepublish": "yarn build",
  25. "build": "yarn lint && tsc -b tsconfig.build.json && webpack",
  26. "clean": "rimraf dist/",
  27. "lint": "yarn eslint . --fix --config .eslintrc.js",
  28. "format": "yarn prettier --write .",
  29. "format-check": "yarn prettier --check .",
  30. "run-ts": "TS_NODE_PROJECT=tsconfig.json node --loader ts-node/esm",
  31. "test": "jest **/*.test.ts",
  32. "test-ci": "yarn run-ts ./node_modules/.bin/nyc jest **/*.test.ts"
  33. },
  34. "nyc": {
  35. "extension": [
  36. ".ts",
  37. ".tsx"
  38. ],
  39. "exclude": [
  40. "**/*.d.ts"
  41. ],
  42. "reporter": [
  43. "html"
  44. ],
  45. "all": true
  46. },
  47. "lint-staged": {
  48. "*.ts": [
  49. "yarn lint",
  50. "yarn format"
  51. ]
  52. },
  53. "devDependencies": {
  54. "@types/assert": "^1.4.3",
  55. "@types/jest": "^29.5.8",
  56. "@types/mockdate": "^3.0.0",
  57. "@types/node": "^17.0.41",
  58. "@typescript-eslint/eslint-plugin": "^5.27.1",
  59. "@typescript-eslint/parser": "^5.27.1",
  60. "coverage": "^0.4.1",
  61. "eslint": "^8.17.0",
  62. "eslint-config-prettier": "^8.5.0",
  63. "eslint-plugin-import": "^2.26.0",
  64. "eslint-plugin-prettier": "^4.0.0",
  65. "husky": "^8.0.1",
  66. "jest": "^29.7.0",
  67. "lint-staged": "^13.0.1",
  68. "mockdate": "^3.0.5",
  69. "nyc": "^15.1.0",
  70. "prettier": "^2.6.2",
  71. "source-map-loader": "^3.0.1",
  72. "source-map-support": "^0.5.16",
  73. "terser-webpack-plugin": "^5.3.3",
  74. "ts-jest": "^29.1.1",
  75. "ts-loader": "^9.3.0",
  76. "ts-node": "^10.8.1",
  77. "typescript": "^4.7.3",
  78. "unminified-webpack-plugin": "^3.0.0",
  79. "webpack": "^5.73.0",
  80. "webpack-cli": "^4.9.2"
  81. },
  82. "files": [
  83. "dist",
  84. "README.md"
  85. ],
  86. "peerDependencies": {},
  87. "dependencies": {
  88. "tslib": "^2.4.0"
  89. }
  90. }