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 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "_args": [
  3. [
  4. "flatted@3.2.0",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_from": "flatted@3.2.0",
  9. "_id": "flatted@3.2.0",
  10. "_inBundle": false,
  11. "_integrity": "sha512-XprP7lDrVT+kE2c2YlfiV+IfS9zxukiIOvNamPNsImNhXadSsQEbosItdL9bUQlCZXR13SvPk20BjWSWLA7m4A==",
  12. "_location": "/flatted",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "flatted@3.2.0",
  18. "name": "flatted",
  19. "escapedName": "flatted",
  20. "rawSpec": "3.2.0",
  21. "saveSpec": null,
  22. "fetchSpec": "3.2.0"
  23. },
  24. "_requiredBy": [
  25. "/flat-cache"
  26. ],
  27. "_resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.0.tgz",
  28. "_spec": "3.2.0",
  29. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  30. "author": {
  31. "name": "Andrea Giammarchi"
  32. },
  33. "bugs": {
  34. "url": "https://github.com/WebReflection/flatted/issues"
  35. },
  36. "description": "A super light and fast circular JSON parser.",
  37. "devDependencies": {
  38. "@babel/core": "^7.14.6",
  39. "@babel/preset-env": "^7.14.7",
  40. "ascjs": "^5.0.1",
  41. "circular-json": "^0.5.9",
  42. "circular-json-es6": "^2.0.2",
  43. "coveralls": "^3.1.1",
  44. "drop-babel-typeof": "^1.0.3",
  45. "jsan": "^3.1.13",
  46. "nyc": "^15.1.0",
  47. "rollup": "^2.52.6",
  48. "rollup-plugin-babel": "^4.4.0",
  49. "rollup-plugin-node-resolve": "^5.2.0",
  50. "rollup-plugin-terser": "^7.0.2",
  51. "terser": "^5.7.1"
  52. },
  53. "exports": {
  54. "import": "./esm/index.js",
  55. "default": "./cjs/index.js"
  56. },
  57. "homepage": "https://github.com/WebReflection/flatted#readme",
  58. "keywords": [
  59. "circular",
  60. "JSON",
  61. "fast",
  62. "parser",
  63. "minimal"
  64. ],
  65. "license": "ISC",
  66. "main": "./cjs/index.js",
  67. "module": "./esm/index.js",
  68. "name": "flatted",
  69. "repository": {
  70. "type": "git",
  71. "url": "git+https://github.com/WebReflection/flatted.git"
  72. },
  73. "scripts": {
  74. "build": "npm run cjs && npm run rollup:es && npm run rollup:babel && npm run min && npm run test && npm run size",
  75. "cjs": "ascjs esm cjs",
  76. "coveralls": "nyc report --reporter=text-lcov | coveralls",
  77. "min": "terser index.js -c -m -o min.js",
  78. "rollup:babel": "rollup --config rollup/babel.config.js && sed -i.bck 's/^var /self./' index.js && rm -rf index.js.bck && drop-babel-typeof index.js",
  79. "rollup:es": "rollup --config rollup/es.config.js && sed -i.bck 's/^var /self./' es.js && rm -rf es.js.bck",
  80. "size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c9 min.js | wc -c;cat min.js | brotli | wc -c; cat es.js | brotli | wc -c",
  81. "test": "nyc node test/index.js"
  82. },
  83. "type": "module",
  84. "types": "types.d.ts",
  85. "unpkg": "min.js",
  86. "version": "3.2.0"
  87. }