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 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. {
  2. "_args": [
  3. [
  4. "mdast-util-from-markdown@0.8.5",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "mdast-util-from-markdown@0.8.5",
  10. "_id": "mdast-util-from-markdown@0.8.5",
  11. "_inBundle": false,
  12. "_integrity": "sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==",
  13. "_location": "/mdast-util-from-markdown",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "mdast-util-from-markdown@0.8.5",
  19. "name": "mdast-util-from-markdown",
  20. "escapedName": "mdast-util-from-markdown",
  21. "rawSpec": "0.8.5",
  22. "saveSpec": null,
  23. "fetchSpec": "0.8.5"
  24. },
  25. "_requiredBy": [
  26. "/remark-parse"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz",
  29. "_spec": "0.8.5",
  30. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  31. "author": {
  32. "name": "Titus Wormer",
  33. "email": "tituswormer@gmail.com",
  34. "url": "https://wooorm.com"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/syntax-tree/mdast-util-from-markdown/issues"
  38. },
  39. "contributors": [
  40. {
  41. "name": "Titus Wormer",
  42. "email": "tituswormer@gmail.com",
  43. "url": "https://wooorm.com"
  44. }
  45. ],
  46. "dependencies": {
  47. "@types/mdast": "^3.0.0",
  48. "mdast-util-to-string": "^2.0.0",
  49. "micromark": "~2.11.0",
  50. "parse-entities": "^2.0.0",
  51. "unist-util-stringify-position": "^2.0.0"
  52. },
  53. "description": "mdast utility to parse markdown",
  54. "devDependencies": {
  55. "@babel/cli": "^7.0.0",
  56. "@babel/core": "^7.0.0",
  57. "babel-plugin-inline-constants": "^1.0.0",
  58. "browserify": "^17.0.0",
  59. "commonmark.json": "^0.29.0",
  60. "dtslint": "^4.0.0",
  61. "gzip-size-cli": "^4.0.0",
  62. "hast-util-to-html": "^7.0.0",
  63. "mdast-util-to-hast": "^10.0.0",
  64. "nyc": "^15.0.0",
  65. "prettier": "^2.0.0",
  66. "rehype-parse": "^7.0.0",
  67. "rehype-stringify": "^8.0.0",
  68. "remark-cli": "^9.0.0",
  69. "remark-preset-wooorm": "^8.0.0",
  70. "tape": "^5.0.0",
  71. "tinyify": "^3.0.0",
  72. "unified": "^9.0.0",
  73. "xo": "^0.37.0"
  74. },
  75. "files": [
  76. "dist/",
  77. "lib/",
  78. "index.js",
  79. "types/index.d.ts"
  80. ],
  81. "funding": {
  82. "type": "opencollective",
  83. "url": "https://opencollective.com/unified"
  84. },
  85. "homepage": "https://github.com/syntax-tree/mdast-util-from-markdown#readme",
  86. "keywords": [
  87. "unist",
  88. "mdast",
  89. "mdast-util",
  90. "util",
  91. "utility",
  92. "markdown",
  93. "markup",
  94. "parse",
  95. "syntax",
  96. "tree",
  97. "ast"
  98. ],
  99. "license": "MIT",
  100. "name": "mdast-util-from-markdown",
  101. "nyc": {
  102. "check-coverage": true,
  103. "lines": 100,
  104. "functions": 100,
  105. "branches": 100
  106. },
  107. "prettier": {
  108. "tabWidth": 2,
  109. "useTabs": false,
  110. "singleQuote": true,
  111. "bracketSpacing": false,
  112. "semi": false,
  113. "trailingComma": "none"
  114. },
  115. "remarkConfig": {
  116. "plugins": [
  117. "preset-wooorm"
  118. ]
  119. },
  120. "repository": {
  121. "type": "git",
  122. "url": "git+https://github.com/syntax-tree/mdast-util-from-markdown.git"
  123. },
  124. "scripts": {
  125. "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
  126. "generate": "npm run generate-dist && npm run generate-size",
  127. "generate-dist": "babel lib/ --out-dir dist/ --quiet --retain-lines; prettier dist/ --loglevel error --write",
  128. "generate-size": "browserify . -p tinyify -s mdast-util-from-markdown -o mdast-util-from-markdown.min.js; gzip-size mdast-util-from-markdown.min.js --raw",
  129. "test": "npm run format && npm run generate && npm run test-coverage && npm run test-types",
  130. "test-api": "node test",
  131. "test-coverage": "nyc --reporter lcov tape test/index.js",
  132. "test-types": "dtslint types"
  133. },
  134. "types": "types",
  135. "version": "0.8.5",
  136. "xo": {
  137. "prettier": true,
  138. "esnext": false,
  139. "rules": {
  140. "complexity": "off",
  141. "guard-for-in": "off",
  142. "unicorn/explicit-length-check": "off",
  143. "unicorn/no-array-callback-reference": "off",
  144. "unicorn/prefer-includes": "off",
  145. "unicorn/prefer-number-properties": "off",
  146. "unicorn/prefer-optional-catch-binding": "off"
  147. },
  148. "ignores": [
  149. "types/"
  150. ]
  151. }
  152. }