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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. {
  2. "_args": [
  3. [
  4. "mdast-util-to-string@2.0.0",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "mdast-util-to-string@2.0.0",
  10. "_id": "mdast-util-to-string@2.0.0",
  11. "_inBundle": false,
  12. "_integrity": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==",
  13. "_location": "/mdast-util-to-string",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "mdast-util-to-string@2.0.0",
  19. "name": "mdast-util-to-string",
  20. "escapedName": "mdast-util-to-string",
  21. "rawSpec": "2.0.0",
  22. "saveSpec": null,
  23. "fetchSpec": "2.0.0"
  24. },
  25. "_requiredBy": [
  26. "/mdast-util-from-markdown",
  27. "/mdast-util-to-markdown"
  28. ],
  29. "_resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz",
  30. "_spec": "2.0.0",
  31. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  32. "author": {
  33. "name": "Titus Wormer",
  34. "email": "tituswormer@gmail.com",
  35. "url": "https://wooorm.com"
  36. },
  37. "bugs": {
  38. "url": "https://github.com/syntax-tree/mdast-util-to-string/issues"
  39. },
  40. "contributors": [
  41. {
  42. "name": "Titus Wormer",
  43. "email": "tituswormer@gmail.com",
  44. "url": "https://wooorm.com"
  45. }
  46. ],
  47. "description": "mdast utility to get the plain text content of a node",
  48. "devDependencies": {
  49. "browserify": "^17.0.0",
  50. "dtslint": "^4.0.0",
  51. "nyc": "^15.0.0",
  52. "prettier": "^2.0.0",
  53. "remark-cli": "^9.0.0",
  54. "remark-preset-wooorm": "^8.0.0",
  55. "tape": "^5.0.0",
  56. "tinyify": "^3.0.0",
  57. "xo": "^0.34.0"
  58. },
  59. "files": [
  60. "index.js",
  61. "types/index.d.ts"
  62. ],
  63. "funding": {
  64. "type": "opencollective",
  65. "url": "https://opencollective.com/unified"
  66. },
  67. "homepage": "https://github.com/syntax-tree/mdast-util-to-string#readme",
  68. "keywords": [
  69. "unist",
  70. "mdast",
  71. "mdast-util",
  72. "util",
  73. "utility",
  74. "markdown",
  75. "node",
  76. "string",
  77. "serialize"
  78. ],
  79. "license": "MIT",
  80. "name": "mdast-util-to-string",
  81. "nyc": {
  82. "check-coverage": true,
  83. "lines": 100,
  84. "functions": 100,
  85. "branches": 100
  86. },
  87. "prettier": {
  88. "tabWidth": 2,
  89. "useTabs": false,
  90. "singleQuote": true,
  91. "bracketSpacing": false,
  92. "semi": false,
  93. "trailingComma": "none"
  94. },
  95. "remarkConfig": {
  96. "plugins": [
  97. "preset-wooorm"
  98. ]
  99. },
  100. "repository": {
  101. "type": "git",
  102. "url": "git+https://github.com/syntax-tree/mdast-util-to-string.git"
  103. },
  104. "scripts": {
  105. "build": "npm run build-bundle && npm run build-mangle",
  106. "build-bundle": "browserify . -s mdastUtilToString -o mdast-util-to-string.js",
  107. "build-mangle": "browserify . -s mdastUtilToString -o mdast-util-to-string.min.js -p tinyify",
  108. "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
  109. "test": "npm run format && npm run build && npm run test-coverage && npm run test-types",
  110. "test-api": "node test",
  111. "test-coverage": "nyc --reporter lcov tape test.js",
  112. "test-types": "dtslint types"
  113. },
  114. "types": "types/index.d.ts",
  115. "version": "2.0.0",
  116. "xo": {
  117. "prettier": true,
  118. "esnext": false,
  119. "ignore": [
  120. "mdast-util-to-string.js",
  121. "types/test.ts"
  122. ]
  123. }
  124. }