Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. {
  2. "_args": [
  3. [
  4. "rrule@2.6.8",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_from": "rrule@2.6.8",
  9. "_id": "rrule@2.6.8",
  10. "_inBundle": false,
  11. "_integrity": "sha512-cUaXuUPrz9d1wdyzHsBfT1hptKlGgABeCINFXFvulEPqh9Np9BnF3C3lrv9uO54IIr8VDb58tsSF3LhsW+4VRw==",
  12. "_location": "/rrule",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "rrule@2.6.8",
  18. "name": "rrule",
  19. "escapedName": "rrule",
  20. "rawSpec": "2.6.8",
  21. "saveSpec": null,
  22. "fetchSpec": "2.6.8"
  23. },
  24. "_requiredBy": [
  25. "/node-ical"
  26. ],
  27. "_resolved": "https://registry.npmjs.org/rrule/-/rrule-2.6.8.tgz",
  28. "_spec": "2.6.8",
  29. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  30. "author": {
  31. "name": "Jakub Roztocil, Lars Schöning, and David Golightly"
  32. },
  33. "bugs": {
  34. "url": "https://github.com/jakubroztocil/rrule/issues"
  35. },
  36. "dependencies": {
  37. "luxon": "^1.21.3",
  38. "tslib": "^1.10.0"
  39. },
  40. "description": "JavaScript library for working with recurrence rules for calendar dates.",
  41. "devDependencies": {
  42. "@types/assert": "^1.4.3",
  43. "@types/chai": "^4.2.7",
  44. "@types/jquery": "^3.3.29",
  45. "@types/luxon": "^1.21.0",
  46. "@types/mocha": "^5.2.5",
  47. "@types/mockdate": "^2.0.0",
  48. "@types/node": "^12.12.18",
  49. "chai": "^4.2.0",
  50. "copy-webpack-plugin": "^5.1.1",
  51. "coverage": "^0.4.1",
  52. "html-webpack-plugin": "^3.2.0",
  53. "husky": "^3.1.0",
  54. "jquery": "^3.3.1",
  55. "mocha": "^6.2.2",
  56. "mockdate": "^2.0.5",
  57. "nyc": "^14.1.1",
  58. "source-map-loader": "^0.2.4",
  59. "source-map-support": "^0.5.16",
  60. "ts-loader": "^6.2.1",
  61. "ts-node": "^8.5.4",
  62. "tslint": "^5.20.1",
  63. "tslint-eslint-rules": "^5.4.0",
  64. "typescript": "^3.7.3",
  65. "uglifyjs-webpack-plugin": "^2.2.0",
  66. "webpack": "^4.41.3",
  67. "webpack-cli": "^3.3.10"
  68. },
  69. "files": [
  70. "dist",
  71. "README.md"
  72. ],
  73. "homepage": "http://jakubroztocil.github.io/rrule/",
  74. "husky": {
  75. "hooks": {
  76. "pre-commit": "yarn lint"
  77. }
  78. },
  79. "keywords": [
  80. "dates",
  81. "recurrences",
  82. "calendar",
  83. "icalendar",
  84. "rfc"
  85. ],
  86. "license": "BSD-3-Clause",
  87. "main": "dist/es5/rrule.js",
  88. "module": "dist/esm/src/index.js",
  89. "name": "rrule",
  90. "nyc": {
  91. "extension": [
  92. ".ts",
  93. ".tsx"
  94. ],
  95. "exclude": [
  96. "**/*.d.ts"
  97. ],
  98. "reporter": [
  99. "html"
  100. ],
  101. "all": true
  102. },
  103. "optionalDependencies": {
  104. "luxon": "^1.21.3"
  105. },
  106. "peerDependencies": {},
  107. "repository": {
  108. "type": "git",
  109. "url": "git://github.com/jakubroztocil/rrule.git"
  110. },
  111. "scripts": {
  112. "build": "yarn lint && tsc && webpack && tsc dist/esm/**/*.d.ts",
  113. "lint": "yarn tslint --project . --fix --config tslint.json",
  114. "test": "TS_NODE_PROJECT=tsconfig.test.json mocha **/*.test.ts",
  115. "test-ci": "TS_NODE_PROJECT=tsconfig.test.json nyc mocha **/*.test.ts"
  116. },
  117. "standard": {
  118. "ignore": [
  119. "demo"
  120. ]
  121. },
  122. "typings": "dist/esm/src/index.d.ts",
  123. "version": "2.6.8"
  124. }