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.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. {
  2. "_args": [
  3. [
  4. "comment-parser@1.2.4",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "comment-parser@1.2.4",
  10. "_id": "comment-parser@1.2.4",
  11. "_inBundle": false,
  12. "_integrity": "sha512-pm0b+qv+CkWNriSTMsfnjChF9kH0kxz55y44Wo5le9qLxMj5xDQAaEd9ZN1ovSuk9CsrncWaFwgpOMg7ClJwkw==",
  13. "_location": "/comment-parser",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "comment-parser@1.2.4",
  19. "name": "comment-parser",
  20. "escapedName": "comment-parser",
  21. "rawSpec": "1.2.4",
  22. "saveSpec": null,
  23. "fetchSpec": "1.2.4"
  24. },
  25. "_requiredBy": [
  26. "/@es-joy/jsdoccomment",
  27. "/eslint-plugin-jsdoc"
  28. ],
  29. "_resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.2.4.tgz",
  30. "_spec": "1.2.4",
  31. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  32. "author": {
  33. "name": "Sergiy Yavorsky",
  34. "email": "sergiy@yavorsky.me",
  35. "url": "https://github.com/syavorsky"
  36. },
  37. "bugs": {
  38. "url": "https://github.com/syavorsky/comment-parser/issues"
  39. },
  40. "contributors": [
  41. {
  42. "name": "Alexej Yaroshevich",
  43. "url": "https://github.com/zxqfox"
  44. },
  45. {
  46. "name": "Andre Wachsmuth",
  47. "url": "https://github.com/blutorange"
  48. },
  49. {
  50. "name": "Brett Zamir",
  51. "url": "https://github.com/brettz9"
  52. },
  53. {
  54. "name": "Dieter Oberkofler",
  55. "url": "https://github.com/doberkofler"
  56. },
  57. {
  58. "name": "Evgeny Reznichenko",
  59. "url": "https://github.com/zxcabs"
  60. },
  61. {
  62. "name": "Javier \"Ciberma\" Mora",
  63. "url": "https://github.com/jhm-ciberman"
  64. },
  65. {
  66. "name": "Jordan Harband",
  67. "url": "https://github.com/ljharb"
  68. },
  69. {
  70. "name": "tengattack",
  71. "url": "https://github.com/tengattack"
  72. },
  73. {
  74. "name": "Jayden Seric",
  75. "url": "https://github.com/jaydenseric"
  76. }
  77. ],
  78. "dependencies": {},
  79. "description": "Generic JSDoc-like comment parser",
  80. "devDependencies": {
  81. "@types/jest": "^26.0.23",
  82. "convert-extension": "^0.3.0",
  83. "jest": "^27.0.5",
  84. "prettier": "2.3.1",
  85. "replace": "^1.2.1",
  86. "rimraf": "^3.0.2",
  87. "rollup": "^2.52.2",
  88. "ts-jest": "^27.0.3",
  89. "typescript": "^4.3.4"
  90. },
  91. "directories": {
  92. "test": "tests"
  93. },
  94. "engines": {
  95. "node": ">= 12.0.0"
  96. },
  97. "exports": {
  98. ".": {
  99. "import": "./es6/index.js",
  100. "require": "./lib/index.cjs"
  101. },
  102. "./primitives": {
  103. "import": "./es6/primitives.js",
  104. "require": "./lib/primitives.cjs"
  105. },
  106. "./util": {
  107. "import": "./es6/util.js",
  108. "require": "./lib/util.cjs"
  109. },
  110. "./parser/*": {
  111. "import": "./es6/parser/*.js",
  112. "require": "./lib/parser/*.cjs"
  113. },
  114. "./stringifier/*": {
  115. "import": "./es6/stringifier/*.js",
  116. "require": "./lib/stringifier/*.cjs"
  117. },
  118. "./transforms/*": {
  119. "import": "./es6/transforms/*.js",
  120. "require": "./lib/transforms/*.cjs"
  121. }
  122. },
  123. "homepage": "https://github.com/syavorsky/comment-parser",
  124. "keywords": [
  125. "jsdoc",
  126. "comments",
  127. "parser"
  128. ],
  129. "license": "MIT",
  130. "main": "lib/index.cjs",
  131. "name": "comment-parser",
  132. "repository": {
  133. "type": "git",
  134. "url": "git+ssh://git@github.com/yavorskiy/comment-parser.git"
  135. },
  136. "scripts": {
  137. "build": "rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/ && cd es6 && replace \"from '(\\.[^']*)'\" \"from '\\$1.js'\" * -r --include=\"*.js\"",
  138. "format": "prettier --write src tests",
  139. "pretest": "rimraf coverage; npm run build",
  140. "preversion": "npm run build",
  141. "test": "prettier --check src tests && jest --verbose"
  142. },
  143. "type": "module",
  144. "types": "lib/index.d.ts",
  145. "version": "1.2.4"
  146. }