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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. {
  2. "_args": [
  3. [
  4. "saxes@5.0.1",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "saxes@5.0.1",
  10. "_id": "saxes@5.0.1",
  11. "_inBundle": false,
  12. "_integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
  13. "_location": "/saxes",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "saxes@5.0.1",
  19. "name": "saxes",
  20. "escapedName": "saxes",
  21. "rawSpec": "5.0.1",
  22. "saveSpec": null,
  23. "fetchSpec": "5.0.1"
  24. },
  25. "_requiredBy": [
  26. "/jest-environment-jsdom/jsdom",
  27. "/jsdom"
  28. ],
  29. "_resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz",
  30. "_spec": "5.0.1",
  31. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  32. "author": {
  33. "name": "Louis-Dominique Dubeau",
  34. "email": "ldd@lddubeau.com"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/lddubeau/saxes/issues"
  38. },
  39. "dependencies": {
  40. "xmlchars": "^2.2.0"
  41. },
  42. "description": "An evented streaming XML parser in JavaScript",
  43. "devDependencies": {
  44. "@commitlint/cli": "^8.3.5",
  45. "@commitlint/config-angular": "^8.3.4",
  46. "@types/chai": "^4.2.11",
  47. "@types/mocha": "^7.0.2",
  48. "@typescript-eslint/eslint-plugin": "^2.27.0",
  49. "@typescript-eslint/eslint-plugin-tslint": "^2.27.0",
  50. "@typescript-eslint/parser": "^2.27.0",
  51. "@xml-conformance-suite/js": "^2.0.0",
  52. "@xml-conformance-suite/mocha": "^2.0.0",
  53. "@xml-conformance-suite/test-data": "^2.0.0",
  54. "chai": "^4.2.0",
  55. "conventional-changelog-cli": "^2.0.31",
  56. "eslint": "^6.8.0",
  57. "eslint-config-lddubeau-base": "^5.2.0",
  58. "eslint-config-lddubeau-ts": "^1.1.7",
  59. "eslint-import-resolver-typescript": "^2.0.0",
  60. "eslint-plugin-import": "^2.20.2",
  61. "eslint-plugin-jsx-a11y": "^6.2.3",
  62. "eslint-plugin-prefer-arrow": "^1.2.0",
  63. "eslint-plugin-react": "^7.19.0",
  64. "eslint-plugin-simple-import-sort": "^5.0.2",
  65. "husky": "^4.2.5",
  66. "mocha": "^7.1.1",
  67. "renovate-config-lddubeau": "^1.0.0",
  68. "simple-dist-tag": "^1.0.2",
  69. "ts-node": "^8.8.2",
  70. "tsd": "^0.11.0",
  71. "tslint": "^6.1.1",
  72. "tslint-microsoft-contrib": "^6.2.0",
  73. "typedoc": "^0.17.4",
  74. "typescript": "^3.8.3"
  75. },
  76. "engines": {
  77. "node": ">=10"
  78. },
  79. "homepage": "https://github.com/lddubeau/saxes#readme",
  80. "husky": {
  81. "hooks": {
  82. "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
  83. }
  84. },
  85. "license": "ISC",
  86. "main": "saxes.js",
  87. "name": "saxes",
  88. "repository": {
  89. "type": "git",
  90. "url": "git+https://github.com/lddubeau/saxes.git"
  91. },
  92. "scripts": {
  93. "build": "npm run tsc && npm run copy",
  94. "build-docs": "npm run typedoc",
  95. "copy": "cp -p README.md build/dist && sed -e'/\"private\": true/d' package.json > build/dist/package.json",
  96. "gh-pages": "npm run build-docs && mkdir -p build && (cd build; rm -rf gh-pages; git clone .. --branch gh-pages gh-pages) && mkdir -p build/gh-pages/latest && find build/gh-pages/latest -type f -delete && cp -rp build/docs/* build/gh-pages/latest && find build/gh-pages -type d -empty -delete",
  97. "lint": "eslint --ignore-path .gitignore '**/*.ts' '**/*.js'",
  98. "lint-fix": "npm run lint -- --fix",
  99. "postpublish": "git push origin --follow-tags",
  100. "posttest": "npm run lint",
  101. "postversion": "npm run test && npm run self:publish",
  102. "self:publish": "cd build/dist && npm_config_tag=`simple-dist-tag` npm publish",
  103. "test": "npm run build && mocha --delay",
  104. "tsc": "tsc",
  105. "typedoc": "typedoc --tsconfig tsconfig.json --name saxes --out build/docs/ --listInvalidSymbolLinks --excludePrivate --excludeNotExported",
  106. "version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
  107. },
  108. "types": "saxes.d.ts",
  109. "version": "5.0.1"
  110. }