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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. {
  2. "_args": [
  3. [
  4. "fast-glob@3.2.6",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "fast-glob@3.2.6",
  10. "_id": "fast-glob@3.2.6",
  11. "_inBundle": false,
  12. "_integrity": "sha512-GnLuqj/pvQ7pX8/L4J84nijv6sAnlwvSDpMkJi9i7nPmPxGtRPkBSStfvDW5l6nMdX9VWe+pkKWFTgD+vF2QSQ==",
  13. "_location": "/fast-glob",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "fast-glob@3.2.6",
  19. "name": "fast-glob",
  20. "escapedName": "fast-glob",
  21. "rawSpec": "3.2.6",
  22. "saveSpec": null,
  23. "fetchSpec": "3.2.6"
  24. },
  25. "_requiredBy": [
  26. "/globby",
  27. "/stylelint"
  28. ],
  29. "_resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.6.tgz",
  30. "_spec": "3.2.6",
  31. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  32. "author": {
  33. "name": "Denis Malinochkin",
  34. "url": "https://mrmlnc.com"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/mrmlnc/fast-glob/issues"
  38. },
  39. "dependencies": {
  40. "@nodelib/fs.stat": "^2.0.2",
  41. "@nodelib/fs.walk": "^1.2.3",
  42. "glob-parent": "^5.1.2",
  43. "merge2": "^1.3.0",
  44. "micromatch": "^4.0.4"
  45. },
  46. "description": "It's a very fast and efficient glob library for Node.js",
  47. "devDependencies": {
  48. "@nodelib/fs.macchiato": "^1.0.1",
  49. "@types/compute-stdev": "^1.0.0",
  50. "@types/easy-table": "^0.0.32",
  51. "@types/glob": "^7.1.1",
  52. "@types/glob-parent": "^5.1.0",
  53. "@types/is-ci": "^2.0.0",
  54. "@types/merge2": "^1.1.4",
  55. "@types/micromatch": "^4.0.0",
  56. "@types/minimist": "^1.2.0",
  57. "@types/mocha": "^5.2.7",
  58. "@types/node": "^12.7.8",
  59. "@types/rimraf": "^2.0.2",
  60. "@types/sinon": "^7.5.0",
  61. "compute-stdev": "^1.0.0",
  62. "easy-table": "^1.1.1",
  63. "eslint": "^6.5.1",
  64. "eslint-config-mrmlnc": "^1.1.0",
  65. "execa": "^2.0.4",
  66. "fast-glob": "^3.0.4",
  67. "fdir": "^5.1.0",
  68. "glob": "^7.1.4",
  69. "is-ci": "^2.0.0",
  70. "log-update": "^4.0.0",
  71. "minimist": "^1.2.0",
  72. "mocha": "^6.2.1",
  73. "rimraf": "^3.0.0",
  74. "sinon": "^7.5.0",
  75. "tiny-glob": "^0.2.6",
  76. "typescript": "^3.6.3"
  77. },
  78. "engines": {
  79. "node": ">=8"
  80. },
  81. "files": [
  82. "out",
  83. "!out/{benchmark,tests}",
  84. "!out/**/*.map",
  85. "!out/**/*.spec.*"
  86. ],
  87. "homepage": "https://github.com/mrmlnc/fast-glob#readme",
  88. "keywords": [
  89. "glob",
  90. "patterns",
  91. "fast",
  92. "implementation"
  93. ],
  94. "license": "MIT",
  95. "main": "out/index.js",
  96. "name": "fast-glob",
  97. "repository": {
  98. "type": "git",
  99. "url": "git+https://github.com/mrmlnc/fast-glob.git"
  100. },
  101. "scripts": {
  102. "bench": "npm run bench-async && npm run bench-stream && npm run bench-sync",
  103. "bench-async": "npm run bench-async-flatten && npm run bench-async-deep && npm run bench-async-partial-flatten && npm run bench-async-partial-deep",
  104. "bench-async-deep": "node ./out/benchmark --mode async --pattern \"**\"",
  105. "bench-async-flatten": "node ./out/benchmark --mode async --pattern \"*\"",
  106. "bench-async-partial-deep": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/**\"",
  107. "bench-async-partial-flatten": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/{first,second}/*\"",
  108. "bench-stream": "npm run bench-stream-flatten && npm run bench-stream-deep && npm run bench-stream-partial-flatten && npm run bench-stream-partial-deep",
  109. "bench-stream-deep": "node ./out/benchmark --mode stream --pattern \"**\"",
  110. "bench-stream-flatten": "node ./out/benchmark --mode stream --pattern \"*\"",
  111. "bench-stream-partial-deep": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/**\"",
  112. "bench-stream-partial-flatten": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/{first,second}/*\"",
  113. "bench-sync": "npm run bench-sync-flatten && npm run bench-sync-deep && npm run bench-sync-partial-flatten && npm run bench-sync-partial-deep",
  114. "bench-sync-deep": "node ./out/benchmark --mode sync --pattern \"**\"",
  115. "bench-sync-flatten": "node ./out/benchmark --mode sync --pattern \"*\"",
  116. "bench-sync-partial-deep": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/**\"",
  117. "bench-sync-partial-flatten": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/{first,second}/*\"",
  118. "build": "npm run clean && npm run compile && npm run lint && npm test",
  119. "clean": "rimraf out",
  120. "compile": "tsc",
  121. "lint": "eslint \"src/**/*.ts\" --cache",
  122. "smoke": "mocha \"out/**/*.smoke.js\" -s 0",
  123. "smoke:async": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(async\\)\"",
  124. "smoke:stream": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(stream\\)\"",
  125. "smoke:sync": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(sync\\)\"",
  126. "test": "mocha \"out/**/*.spec.js\" -s 0",
  127. "watch": "npm run clean && npm run compile -- --sourceMap --watch"
  128. },
  129. "typings": "out/index.d.ts",
  130. "version": "3.2.6"
  131. }