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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. {
  2. "_args": [
  3. [
  4. "cosmiconfig@7.0.0",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "cosmiconfig@7.0.0",
  10. "_id": "cosmiconfig@7.0.0",
  11. "_inBundle": false,
  12. "_integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==",
  13. "_location": "/cosmiconfig",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "cosmiconfig@7.0.0",
  19. "name": "cosmiconfig",
  20. "escapedName": "cosmiconfig",
  21. "rawSpec": "7.0.0",
  22. "saveSpec": null,
  23. "fetchSpec": "7.0.0"
  24. },
  25. "_requiredBy": [
  26. "/stylelint"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz",
  29. "_spec": "7.0.0",
  30. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  31. "author": {
  32. "name": "David Clark",
  33. "email": "david.dave.clark@gmail.com"
  34. },
  35. "babel": {
  36. "presets": [
  37. [
  38. "@babel/preset-env",
  39. {
  40. "targets": {
  41. "node": "10"
  42. }
  43. }
  44. ],
  45. "@babel/preset-typescript"
  46. ]
  47. },
  48. "bugs": {
  49. "url": "https://github.com/davidtheclark/cosmiconfig/issues"
  50. },
  51. "contributors": [
  52. {
  53. "name": "Bogdan Chadkin",
  54. "email": "trysound@yandex.ru"
  55. },
  56. {
  57. "name": "Suhas Karanth",
  58. "email": "sudo.suhas@gmail.com"
  59. }
  60. ],
  61. "dependencies": {
  62. "@types/parse-json": "^4.0.0",
  63. "import-fresh": "^3.2.1",
  64. "parse-json": "^5.0.0",
  65. "path-type": "^4.0.0",
  66. "yaml": "^1.10.0"
  67. },
  68. "description": "Find and load configuration from a package.json property, rc file, or CommonJS module",
  69. "devDependencies": {
  70. "@babel/cli": "^7.10.4",
  71. "@babel/core": "^7.10.4",
  72. "@babel/preset-env": "^7.10.4",
  73. "@babel/preset-typescript": "^7.10.4",
  74. "@types/jest": "^26.0.4",
  75. "@types/node": "^14.0.22",
  76. "@typescript-eslint/eslint-plugin": "^3.6.0",
  77. "@typescript-eslint/parser": "^3.6.0",
  78. "cross-env": "^7.0.2",
  79. "del": "^5.1.0",
  80. "del-cli": "^3.0.1",
  81. "eslint": "^7.4.0",
  82. "eslint-config-davidtheclark-node": "^0.2.2",
  83. "eslint-config-prettier": "^6.11.0",
  84. "eslint-plugin-import": "^2.22.0",
  85. "eslint-plugin-jest": "^23.18.0",
  86. "eslint-plugin-node": "^11.1.0",
  87. "husky": "^4.2.5",
  88. "jest": "^26.1.0",
  89. "lint-staged": "^10.2.11",
  90. "make-dir": "^3.1.0",
  91. "parent-module": "^2.0.0",
  92. "prettier": "^2.0.5",
  93. "remark-preset-davidtheclark": "^0.12.0",
  94. "typescript": "^3.9.6"
  95. },
  96. "engines": {
  97. "node": ">=10"
  98. },
  99. "files": [
  100. "dist"
  101. ],
  102. "homepage": "https://github.com/davidtheclark/cosmiconfig#readme",
  103. "husky": {
  104. "hooks": {
  105. "pre-commit": "lint-staged && npm run typescript && npm run test",
  106. "pre-push": "npm run check:all"
  107. }
  108. },
  109. "jest": {
  110. "testEnvironment": "node",
  111. "collectCoverageFrom": [
  112. "src/**/*.{js,ts}"
  113. ],
  114. "coverageReporters": [
  115. "text",
  116. "html",
  117. "lcov"
  118. ],
  119. "coverageThreshold": {
  120. "global": {
  121. "branches": 100,
  122. "functions": 100,
  123. "lines": 100,
  124. "statements": 100
  125. }
  126. },
  127. "resetModules": true,
  128. "resetMocks": true,
  129. "restoreMocks": true
  130. },
  131. "keywords": [
  132. "load",
  133. "configuration",
  134. "config"
  135. ],
  136. "license": "MIT",
  137. "lint-staged": {
  138. "*.{js,ts}": [
  139. "eslint --fix",
  140. "prettier --write"
  141. ],
  142. "*.{json,yml,yaml}": [
  143. "prettier --write"
  144. ],
  145. "*.md": [
  146. "remark-preset-davidtheclark",
  147. "remark-preset-davidtheclark --format"
  148. ]
  149. },
  150. "main": "dist/index.js",
  151. "name": "cosmiconfig",
  152. "prettier": {
  153. "trailingComma": "all",
  154. "arrowParens": "always",
  155. "singleQuote": true,
  156. "printWidth": 80,
  157. "tabWidth": 2
  158. },
  159. "repository": {
  160. "type": "git",
  161. "url": "git+https://github.com/davidtheclark/cosmiconfig.git"
  162. },
  163. "scripts": {
  164. "build": "npm run clean && npm run build:compile && npm run build:types",
  165. "build:compile": "cross-env NODE_ENV=production babel src -d dist --verbose --extensions .js,.ts --ignore \"**/**/*.test.js\",\"**/**/*.test.ts\" --source-maps",
  166. "build:types": "cross-env NODE_ENV=production tsc --project tsconfig.types.json",
  167. "check:all": "npm run test && npm run typescript && npm run lint && npm run format:check",
  168. "clean": "del-cli --dot=true \"./dist/**/*\"",
  169. "dev": "npm run clean && npm run build:compile -- --watch",
  170. "format": "prettier \"**/*.{js,ts,json,yml,yaml}\" --write",
  171. "format:check": "prettier \"**/*.{js,ts,json,yml,yaml}\" --check",
  172. "format:md": "remark-preset-davidtheclark --format",
  173. "lint": "eslint --ext .js,.ts . && npm run lint:md",
  174. "lint:fix": "eslint --ext .js,.ts . --fix",
  175. "lint:md": "remark-preset-davidtheclark",
  176. "prepublishOnly": "npm run check:all && npm run build",
  177. "test": "jest --coverage",
  178. "test:watch": "jest --watch",
  179. "typescript": "tsc"
  180. },
  181. "types": "dist/index.d.ts",
  182. "version": "7.0.0"
  183. }