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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "_args": [
  3. [
  4. "xmlchars@2.2.0",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "xmlchars@2.2.0",
  10. "_id": "xmlchars@2.2.0",
  11. "_inBundle": false,
  12. "_integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
  13. "_location": "/xmlchars",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "xmlchars@2.2.0",
  19. "name": "xmlchars",
  20. "escapedName": "xmlchars",
  21. "rawSpec": "2.2.0",
  22. "saveSpec": null,
  23. "fetchSpec": "2.2.0"
  24. },
  25. "_requiredBy": [
  26. "/saxes"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
  29. "_spec": "2.2.0",
  30. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  31. "author": {
  32. "name": "Louis-Dominique Dubeau",
  33. "email": "ldd@lddubeau.com"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/lddubeau/xmlchars/issues"
  37. },
  38. "dependencies": {},
  39. "description": "Utilities for determining if characters belong to character classes defined by the XML specs.",
  40. "devDependencies": {
  41. "@commitlint/cli": "^8.1.0",
  42. "@commitlint/config-angular": "^8.1.0",
  43. "@types/chai": "^4.2.1",
  44. "@types/mocha": "^5.2.7",
  45. "chai": "^4.2.0",
  46. "conventional-changelog-cli": "^2.0.23",
  47. "husky": "^3.0.5",
  48. "mocha": "^6.2.0",
  49. "ts-node": "^8.3.0",
  50. "tslint": "^5.19.0",
  51. "tslint-config-lddubeau": "^4.1.0",
  52. "typescript": "^3.6.2"
  53. },
  54. "homepage": "https://github.com/lddubeau/xmlchars#readme",
  55. "husky": {
  56. "hooks": {
  57. "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
  58. }
  59. },
  60. "keywords": [
  61. "XML",
  62. "validation"
  63. ],
  64. "license": "MIT",
  65. "main": "xmlchars.js",
  66. "name": "xmlchars",
  67. "repository": {
  68. "type": "git",
  69. "url": "git+https://github.com/lddubeau/xmlchars.git"
  70. },
  71. "scripts": {
  72. "build": "tsc && npm run copy",
  73. "clean": "rm -rf build",
  74. "copy": "cp README.md LICENSE build/dist && sed -e'/\"private\": true/d' package.json > build/dist/package.json",
  75. "postpublish": "git push origin --follow-tags",
  76. "posttest": "tslint -p tsconfig.json && tslint -p test/tsconfig.json",
  77. "postversion": "npm run xmlchars:publish",
  78. "prepack": "node -e 'require(\"assert\")(!require(\"./package.json\").private)'",
  79. "prepublishOnly": "node -e 'require(\"assert\")(!require(\"./package.json\").private)'",
  80. "pretest": "npm run build",
  81. "preversion": "npm run test-install",
  82. "test": "mocha",
  83. "test-install": "npm run test && (test_dir=build/install_dir; rm -rf $test_dir; mkdir -p $test_dir/node_modules; packname=`npm run xmlchars:pack --silent`; (cd $test_dir; npm install ../$packname); rm -rf $test_dir)",
  84. "version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
  85. "xmlchars:pack": "cd build/dist/ && (packname=`npm pack --silent`; mv $packname ..; echo $packname)",
  86. "xmlchars:publish": "npm run test-install && (cd build/dist && npm publish)"
  87. },
  88. "types": "xmlchars.d.ts",
  89. "version": "2.2.0"
  90. }