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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. {
  2. "_args": [
  3. [
  4. "@electron/get@1.12.4",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_from": "@electron/get@1.12.4",
  9. "_id": "@electron/get@1.12.4",
  10. "_inBundle": false,
  11. "_integrity": "sha512-6nr9DbJPUR9Xujw6zD3y+rS95TyItEVM0NVjt1EehY2vUWfIgPiIPVHxCvaTS0xr2B+DRxovYVKbuOWqC35kjg==",
  12. "_location": "/@electron/get",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "@electron/get@1.12.4",
  18. "name": "@electron/get",
  19. "escapedName": "@electron%2fget",
  20. "scope": "@electron",
  21. "rawSpec": "1.12.4",
  22. "saveSpec": null,
  23. "fetchSpec": "1.12.4"
  24. },
  25. "_requiredBy": [
  26. "/electron",
  27. "/electron-chromedriver"
  28. ],
  29. "_resolved": "https://registry.npmjs.org/@electron/get/-/get-1.12.4.tgz",
  30. "_spec": "1.12.4",
  31. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  32. "author": {
  33. "name": "Samuel Attard"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/electron/get/issues"
  37. },
  38. "dependencies": {
  39. "debug": "^4.1.1",
  40. "env-paths": "^2.2.0",
  41. "fs-extra": "^8.1.0",
  42. "global-agent": "^2.0.2",
  43. "global-tunnel-ng": "^2.7.1",
  44. "got": "^9.6.0",
  45. "progress": "^2.0.3",
  46. "semver": "^6.2.0",
  47. "sumchecker": "^3.0.1"
  48. },
  49. "description": "Utility for downloading artifacts from different versions of Electron",
  50. "devDependencies": {
  51. "@continuous-auth/semantic-release-npm": "^2.0.0",
  52. "@types/debug": "^4.1.4",
  53. "@types/fs-extra": "^8.0.0",
  54. "@types/got": "^9.4.4",
  55. "@types/jest": "^24.0.13",
  56. "@types/node": "^12.0.2",
  57. "@types/progress": "^2.0.3",
  58. "@types/semver": "^6.2.0",
  59. "@typescript-eslint/eslint-plugin": "^2.34.0",
  60. "@typescript-eslint/parser": "^2.34.0",
  61. "eslint": "^6.8.0",
  62. "eslint-config-prettier": "^6.15.0",
  63. "eslint-plugin-import": "^2.22.1",
  64. "eslint-plugin-jest": "< 24.0.0",
  65. "husky": "^2.3.0",
  66. "jest": "^24.8.0",
  67. "lint-staged": "^8.1.7",
  68. "prettier": "^1.17.1",
  69. "semantic-release": "^15.13.12",
  70. "ts-jest": "^24.0.0",
  71. "typedoc": "^0.17.2",
  72. "typescript": "^3.8.0"
  73. },
  74. "engines": {
  75. "node": ">=8.6"
  76. },
  77. "eslintConfig": {
  78. "parser": "@typescript-eslint/parser",
  79. "extends": [
  80. "eslint:recommended",
  81. "plugin:@typescript-eslint/eslint-recommended",
  82. "plugin:@typescript-eslint/recommended",
  83. "plugin:jest/recommended",
  84. "plugin:import/errors",
  85. "plugin:import/warnings",
  86. "plugin:import/typescript",
  87. "prettier",
  88. "prettier/@typescript-eslint"
  89. ]
  90. },
  91. "files": [
  92. "dist/*",
  93. "README.md"
  94. ],
  95. "homepage": "https://github.com/electron/get#readme",
  96. "husky": {
  97. "hooks": {
  98. "pre-commit": "lint-staged"
  99. }
  100. },
  101. "keywords": [
  102. "electron",
  103. "download",
  104. "prebuild",
  105. "get",
  106. "artifact",
  107. "release"
  108. ],
  109. "license": "MIT",
  110. "lint-staged": {
  111. "*.ts": [
  112. "eslint --fix",
  113. "prettier --write",
  114. "git add"
  115. ]
  116. },
  117. "main": "dist/cjs/index.js",
  118. "module": "dist/esm/index.js",
  119. "name": "@electron/get",
  120. "optionalDependencies": {
  121. "global-agent": "^2.0.2",
  122. "global-tunnel-ng": "^2.7.1"
  123. },
  124. "repository": {
  125. "type": "git",
  126. "url": "git+https://github.com/electron/get.git"
  127. },
  128. "resolutions": {
  129. "eslint/inquirer": "< 7.3.0",
  130. "**/@typescript-eslint/typescript-estree/semver": "^6.3.0"
  131. },
  132. "scripts": {
  133. "build": "tsc && tsc -p tsconfig.esm.json",
  134. "build:docs": "typedoc --out docs",
  135. "eslint": "eslint --ext .ts src test",
  136. "jest": "jest --coverage",
  137. "lint": "npm run prettier && npm run eslint",
  138. "prepublishOnly": "npm run build",
  139. "prettier": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
  140. "test": "npm run lint && npm run jest",
  141. "test:nonetwork": "npm run lint && npm run jest -- --testPathIgnorePatterns network.spec"
  142. },
  143. "version": "1.12.4"
  144. }