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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. {
  2. "_args": [
  3. [
  4. "marky@1.2.2",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "marky@1.2.2",
  10. "_id": "marky@1.2.2",
  11. "_inBundle": false,
  12. "_integrity": "sha512-k1dB2HNeaNyORco8ulVEhctyEGkKHb2YWAhDsxeFlW2nROIirsctBYzKwwS3Vza+sKTS1zO4Z+n9/+9WbGLIxQ==",
  13. "_location": "/marky",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "marky@1.2.2",
  19. "name": "marky",
  20. "escapedName": "marky",
  21. "rawSpec": "1.2.2",
  22. "saveSpec": null,
  23. "fetchSpec": "1.2.2"
  24. },
  25. "_requiredBy": [
  26. "/lighthouse-logger"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/marky/-/marky-1.2.2.tgz",
  29. "_spec": "1.2.2",
  30. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  31. "author": {
  32. "name": "Nolan Lawson",
  33. "email": "nolan@nolanlawson.com"
  34. },
  35. "browser": {
  36. "./lib/marky.cjs.js": "./lib/marky.browser.cjs.js",
  37. "./lib/marky.es.js": "./lib/marky.browser.es.js"
  38. },
  39. "bugs": {
  40. "url": "https://github.com/nolanlawson/marky/issues"
  41. },
  42. "description": "Performance timer based on performance.mark() and measure()",
  43. "devDependencies": {
  44. "@rollup/plugin-buble": "^0.21.3",
  45. "@rollup/plugin-commonjs": "^18.0.0",
  46. "@rollup/plugin-node-resolve": "^11.2.1",
  47. "@rollup/plugin-replace": "^2.4.2",
  48. "assert": "^1.4.1",
  49. "karma": "^5.1.0",
  50. "karma-chrome-launcher": "^3.1.0",
  51. "karma-coverage": "^2.0.2",
  52. "karma-mocha": "^2.0.1",
  53. "karma-rollup-preprocessor": "^7.0.5",
  54. "mkdirp": "^0.5.1",
  55. "mocha": "^8.3.2",
  56. "npm-run-all": "^3.1.2",
  57. "rimraf": "^2.5.4",
  58. "rollup": "^2.46.0",
  59. "standard": "^8.6.0",
  60. "uglify-js": "^2.7.4"
  61. },
  62. "files": [
  63. "lib",
  64. "dist"
  65. ],
  66. "homepage": "https://github.com/nolanlawson/marky#readme",
  67. "jsnext:main": "lib/marky.es.js",
  68. "keywords": [
  69. "mark",
  70. "measure",
  71. "performance",
  72. "user timing",
  73. "timing",
  74. "polyfill",
  75. "stopwatch",
  76. "timer"
  77. ],
  78. "license": "Apache-2.0",
  79. "main": "lib/marky.cjs.js",
  80. "module": "lib/marky.es.js",
  81. "name": "marky",
  82. "repository": {
  83. "type": "git",
  84. "url": "git+https://github.com/nolanlawson/marky.git"
  85. },
  86. "scripts": {
  87. "build": "npm-run-all clean rollup minify",
  88. "clean": "rimraf lib dist && mkdirp lib dist",
  89. "lint": "standard",
  90. "minify": "uglifyjs -mc < dist/marky.js > dist/marky.min.js",
  91. "prepare": "npm run build",
  92. "rollup": "npm-run-all --parallel rollup-cjs rollup-es rollup-iife",
  93. "rollup-cjs": "rollup -c config/rollup.config.cjs.js && rollup -c config/rollup.config.browser.cjs.js",
  94. "rollup-es": "rollup -c config/rollup.config.es.js && rollup -c config/rollup.config.browser.es.js",
  95. "rollup-iife": "rollup -c config/rollup.config.iife.js",
  96. "test": "npm run rollup-cjs && mocha test/test.js",
  97. "test-browser": "karma start --single-run",
  98. "test-browser-debug": "karma start --browsers=Chrome --single-run=false"
  99. },
  100. "standard": {
  101. "ignore": [
  102. "lib",
  103. "dist"
  104. ]
  105. },
  106. "version": "1.2.2"
  107. }