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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. {
  2. "_args": [
  3. [
  4. "@sinonjs/fake-timers@7.1.2",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "@sinonjs/fake-timers@7.1.2",
  10. "_id": "@sinonjs/fake-timers@7.1.2",
  11. "_inBundle": false,
  12. "_integrity": "sha512-iQADsW4LBMISqZ6Ci1dupJL9pprqwcVFTcOsEmQOEhW+KLCVn/Y4Jrvg2k19fIHCp+iFprriYPTdRcQR8NbUPg==",
  13. "_location": "/@sinonjs/fake-timers",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "@sinonjs/fake-timers@7.1.2",
  19. "name": "@sinonjs/fake-timers",
  20. "escapedName": "@sinonjs%2ffake-timers",
  21. "scope": "@sinonjs",
  22. "rawSpec": "7.1.2",
  23. "saveSpec": null,
  24. "fetchSpec": "7.1.2"
  25. },
  26. "_requiredBy": [
  27. "/@jest/fake-timers",
  28. "/nise",
  29. "/sinon"
  30. ],
  31. "_resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-7.1.2.tgz",
  32. "_spec": "7.1.2",
  33. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  34. "author": {
  35. "name": "Christian Johansen"
  36. },
  37. "bugs": {
  38. "url": "https://github.com/sinonjs/fake-timers/issues"
  39. },
  40. "dependencies": {
  41. "@sinonjs/commons": "^1.7.0"
  42. },
  43. "description": "Fake JavaScript timers",
  44. "devDependencies": {
  45. "@sinonjs/referee-sinon": "6.0.1",
  46. "eslint": "6.8.0",
  47. "eslint-config-prettier": "6.10.0",
  48. "eslint-config-sinon": "3.0.1",
  49. "eslint-plugin-ie11": "1.0.0",
  50. "eslint-plugin-mocha": "6.2.2",
  51. "eslint-plugin-prettier": "3.1.1",
  52. "husky": "4.2.1",
  53. "jsdom": "16.5.2",
  54. "lint-staged": "10.0.7",
  55. "mocha": "8.3.2",
  56. "mochify": "7.0.0",
  57. "nyc": "14.1.1",
  58. "prettier": "2.2.1",
  59. "tsd": "0.14.0",
  60. "typescript": "4.1.3"
  61. },
  62. "files": [
  63. "src/",
  64. "types"
  65. ],
  66. "homepage": "https://github.com/sinonjs/fake-timers",
  67. "husky": {
  68. "hooks": {
  69. "pre-commit": "npm run lint"
  70. }
  71. },
  72. "license": "BSD-3-Clause",
  73. "lint-staged": {
  74. "*.{js,css,md}": "prettier --check",
  75. "*.js": "eslint"
  76. },
  77. "main": "./src/fake-timers-src.js",
  78. "name": "@sinonjs/fake-timers",
  79. "nyc": {
  80. "branches": 85,
  81. "lines": 92,
  82. "functions": 92,
  83. "statements": 92,
  84. "exclude": [
  85. "**/*-test.js",
  86. "coverage/**",
  87. "types/**",
  88. "fake-timers.js"
  89. ]
  90. },
  91. "repository": {
  92. "type": "git",
  93. "url": "git+https://github.com/sinonjs/fake-timers.git"
  94. },
  95. "scripts": {
  96. "build": "rm -rf types && tsc",
  97. "lint": "eslint .",
  98. "postversion": "./scripts/postversion.sh",
  99. "prepublishOnly": "npm run build",
  100. "prettier:check": "prettier --check '**/*.{js,css,md,ts}'",
  101. "prettier:write": "prettier --write '**/*.{js,css,md,ts}'",
  102. "preversion": "./scripts/preversion.sh",
  103. "test": "npm run test-node && npm run test-headless",
  104. "test-check-coverage": "npm run test-coverage && nyc check-coverage",
  105. "test-cloud": "mochify --wd --no-detect-globals --timeout=10000",
  106. "test-coverage": "nyc --all --reporter text --reporter html --reporter lcovonly npm run test-node",
  107. "test-headless": "mochify --no-detect-globals --timeout=10000",
  108. "test-node": "mocha test/ integration-test/ -R dot --check-leaks",
  109. "test-types": "tsd && tsc --noEmit test/check-types.ts",
  110. "version": "./scripts/version.sh"
  111. },
  112. "tsd": {
  113. "directory": "test"
  114. },
  115. "types": "./types/fake-timers-src.d.ts",
  116. "version": "7.1.2"
  117. }