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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. {
  2. "_args": [
  3. [
  4. "parse-entities@2.0.0",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "parse-entities@2.0.0",
  10. "_id": "parse-entities@2.0.0",
  11. "_inBundle": false,
  12. "_integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==",
  13. "_location": "/parse-entities",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "parse-entities@2.0.0",
  19. "name": "parse-entities",
  20. "escapedName": "parse-entities",
  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. "/micromark"
  29. ],
  30. "_resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz",
  31. "_spec": "2.0.0",
  32. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  33. "author": {
  34. "name": "Titus Wormer",
  35. "email": "tituswormer@gmail.com",
  36. "url": "https://wooorm.com"
  37. },
  38. "browser": {
  39. "./decode-entity.js": "./decode-entity.browser.js"
  40. },
  41. "bugs": {
  42. "url": "https://github.com/wooorm/parse-entities/issues"
  43. },
  44. "contributors": [
  45. {
  46. "name": "Titus Wormer",
  47. "email": "tituswormer@gmail.com",
  48. "url": "https://wooorm.com"
  49. }
  50. ],
  51. "dependencies": {
  52. "character-entities": "^1.0.0",
  53. "character-entities-legacy": "^1.0.0",
  54. "character-reference-invalid": "^1.0.0",
  55. "is-alphanumerical": "^1.0.0",
  56. "is-decimal": "^1.0.0",
  57. "is-hexadecimal": "^1.0.0"
  58. },
  59. "description": "Parse HTML character references: fast, spec-compliant, positional information",
  60. "devDependencies": {
  61. "browserify": "^16.0.0",
  62. "dtslint": "^2.0.0",
  63. "nyc": "^15.0.0",
  64. "prettier": "^1.0.0",
  65. "remark-cli": "^7.0.0",
  66. "remark-preset-wooorm": "^6.0.0",
  67. "tape": "^4.0.0",
  68. "tape-run": "^6.0.0",
  69. "tinyify": "^2.0.0",
  70. "xo": "^0.25.0"
  71. },
  72. "files": [
  73. "index.js",
  74. "decode-entity.js",
  75. "decode-entity.browser.js",
  76. "types/index.d.ts"
  77. ],
  78. "funding": {
  79. "type": "github",
  80. "url": "https://github.com/sponsors/wooorm"
  81. },
  82. "homepage": "https://github.com/wooorm/parse-entities#readme",
  83. "keywords": [
  84. "parse",
  85. "html",
  86. "character",
  87. "reference",
  88. "entity",
  89. "entities"
  90. ],
  91. "license": "MIT",
  92. "name": "parse-entities",
  93. "nyc": {
  94. "check-coverage": true,
  95. "lines": 100,
  96. "functions": 100,
  97. "branches": 100
  98. },
  99. "prettier": {
  100. "tabWidth": 2,
  101. "useTabs": false,
  102. "singleQuote": true,
  103. "bracketSpacing": false,
  104. "semi": false,
  105. "trailingComma": "none"
  106. },
  107. "react-native": {
  108. "./decode-entity.js": "./decode-entity.js"
  109. },
  110. "remarkConfig": {
  111. "plugins": [
  112. "preset-wooorm"
  113. ]
  114. },
  115. "repository": {
  116. "type": "git",
  117. "url": "git+https://github.com/wooorm/parse-entities.git"
  118. },
  119. "scripts": {
  120. "build": "npm run build-bundle && npm run build-mangle",
  121. "build-bundle": "browserify . -s parseEntities > parse-entities.js",
  122. "build-mangle": "browserify . -s parseEntities -p tinyify > parse-entities.min.js",
  123. "format": "remark . -qfo && prettier --write \"**/*.{js,ts}\" && xo --fix",
  124. "test": "npm run format && npm run build && npm run test-coverage && npm run test-types",
  125. "test-api": "node test",
  126. "test-browser": "browserify test.js | tape-run",
  127. "test-coverage": "nyc --reporter lcov tape test.js",
  128. "test-types": "dtslint types"
  129. },
  130. "types": "types/index.d.ts",
  131. "version": "2.0.0",
  132. "xo": {
  133. "prettier": true,
  134. "esnext": false,
  135. "rules": {
  136. "no-self-compare": "off",
  137. "guard-for-in": "off",
  138. "max-depth": "off"
  139. },
  140. "ignores": [
  141. "parse-entities.js"
  142. ]
  143. }
  144. }