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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. {
  2. "_args": [
  3. [
  4. "yargs@16.2.0",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "yargs@16.2.0",
  10. "_id": "yargs@16.2.0",
  11. "_inBundle": false,
  12. "_integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
  13. "_location": "/yargs",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "yargs@16.2.0",
  19. "name": "yargs",
  20. "escapedName": "yargs",
  21. "rawSpec": "16.2.0",
  22. "saveSpec": null,
  23. "fetchSpec": "16.2.0"
  24. },
  25. "_requiredBy": [
  26. "/jest-cli",
  27. "/jest-runtime"
  28. ],
  29. "_resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
  30. "_spec": "16.2.0",
  31. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  32. "bugs": {
  33. "url": "https://github.com/yargs/yargs/issues"
  34. },
  35. "contributors": [
  36. {
  37. "name": "Yargs Contributors",
  38. "url": "https://github.com/yargs/yargs/graphs/contributors"
  39. }
  40. ],
  41. "dependencies": {
  42. "cliui": "^7.0.2",
  43. "escalade": "^3.1.1",
  44. "get-caller-file": "^2.0.5",
  45. "require-directory": "^2.1.1",
  46. "string-width": "^4.2.0",
  47. "y18n": "^5.0.5",
  48. "yargs-parser": "^20.2.2"
  49. },
  50. "description": "yargs the modern, pirate-themed, successor to optimist.",
  51. "devDependencies": {
  52. "@types/chai": "^4.2.11",
  53. "@types/mocha": "^8.0.0",
  54. "@types/node": "^14.11.2",
  55. "@wessberg/rollup-plugin-ts": "^1.3.2",
  56. "c8": "^7.0.0",
  57. "chai": "^4.2.0",
  58. "chalk": "^4.0.0",
  59. "coveralls": "^3.0.9",
  60. "cpr": "^3.0.1",
  61. "cross-env": "^7.0.2",
  62. "cross-spawn": "^7.0.0",
  63. "gts": "^3.0.0",
  64. "hashish": "0.0.4",
  65. "mocha": "^8.0.0",
  66. "rimraf": "^3.0.2",
  67. "rollup": "^2.23.0",
  68. "rollup-plugin-cleanup": "^3.1.1",
  69. "standardx": "^5.0.0",
  70. "typescript": "^4.0.2",
  71. "which": "^2.0.0",
  72. "yargs-test-extends": "^1.0.1"
  73. },
  74. "engines": {
  75. "node": ">=10"
  76. },
  77. "exports": {
  78. "./package.json": "./package.json",
  79. ".": [
  80. {
  81. "import": "./index.mjs",
  82. "require": "./index.cjs"
  83. },
  84. "./index.cjs"
  85. ],
  86. "./helpers": {
  87. "import": "./helpers/helpers.mjs",
  88. "require": "./helpers/index.js"
  89. },
  90. "./yargs": [
  91. {
  92. "require": "./yargs"
  93. },
  94. "./yargs"
  95. ]
  96. },
  97. "files": [
  98. "browser.mjs",
  99. "index.cjs",
  100. "helpers/*.js",
  101. "helpers/*",
  102. "index.mjs",
  103. "yargs",
  104. "build",
  105. "locales",
  106. "LICENSE",
  107. "lib/platform-shims/*.mjs",
  108. "!*.d.ts"
  109. ],
  110. "homepage": "https://yargs.js.org/",
  111. "keywords": [
  112. "argument",
  113. "args",
  114. "option",
  115. "parser",
  116. "parsing",
  117. "cli",
  118. "command"
  119. ],
  120. "license": "MIT",
  121. "main": "./index.cjs",
  122. "module": "./index.mjs",
  123. "name": "yargs",
  124. "repository": {
  125. "type": "git",
  126. "url": "git+https://github.com/yargs/yargs.git"
  127. },
  128. "scripts": {
  129. "build:cjs": "rollup -c rollup.config.cjs",
  130. "check": "gts lint && npm run check:js",
  131. "check:js": "standardx '**/*.mjs' && standardx '**/*.cjs' && standardx './*.mjs' && standardx './*.cjs'",
  132. "clean": "gts clean",
  133. "compile": "rimraf build && tsc",
  134. "coverage": "c8 report --check-coverage",
  135. "fix": "gts fix && npm run fix:js",
  136. "fix:js": "standardx --fix '**/*.mjs' && standardx --fix '**/*.cjs' && standardx --fix './*.mjs' && standardx --fix './*.cjs'",
  137. "postbuild:cjs": "rimraf ./build/index.cjs.d.ts",
  138. "postcompile": "npm run build:cjs",
  139. "posttest": "npm run check",
  140. "prepare": "npm run compile",
  141. "pretest": "npm run compile -- -p tsconfig.test.json && cross-env NODE_ENV=test npm run build:cjs",
  142. "test": "c8 mocha ./test/*.cjs --require ./test/before.cjs --timeout=12000 --check-leaks",
  143. "test:esm": "c8 mocha ./test/esm/*.mjs --check-leaks"
  144. },
  145. "standardx": {
  146. "ignore": [
  147. "build",
  148. "helpers",
  149. "**/example/**",
  150. "**/platform-shims/esm.mjs"
  151. ]
  152. },
  153. "type": "module",
  154. "version": "16.2.0"
  155. }