Dieses Repository beinhaltet HTML- und Javascript Code zur einer NotizenWebApp auf Basis von Web Storage. Zudem sind Mocha/Chai Tests im Browser enthalten. https://meinenotizen.netlify.app/
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.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. {
  2. "_from": "object-keys@^1.0.12",
  3. "_id": "object-keys@1.1.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
  6. "_location": "/object-keys",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "object-keys@^1.0.12",
  12. "name": "object-keys",
  13. "escapedName": "object-keys",
  14. "rawSpec": "^1.0.12",
  15. "saveSpec": null,
  16. "fetchSpec": "^1.0.12"
  17. },
  18. "_requiredBy": [
  19. "/define-properties",
  20. "/es-abstract",
  21. "/object.assign"
  22. ],
  23. "_resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
  24. "_shasum": "1c47f272df277f3b1daf061677d9c82e2322c60e",
  25. "_spec": "object-keys@^1.0.12",
  26. "_where": "C:\\Repos\\mdt5_webApplicationen\\StartMochaTutorial\\node_modules\\define-properties",
  27. "author": {
  28. "name": "Jordan Harband",
  29. "email": "ljharb@gmail.com",
  30. "url": "http://ljharb.codes"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/ljharb/object-keys/issues"
  34. },
  35. "bundleDependencies": false,
  36. "contributors": [
  37. {
  38. "name": "Jordan Harband",
  39. "email": "ljharb@gmail.com",
  40. "url": "http://ljharb.codes"
  41. },
  42. {
  43. "name": "Raynos",
  44. "email": "raynos2@gmail.com"
  45. },
  46. {
  47. "name": "Nathan Rajlich",
  48. "email": "nathan@tootallnate.net"
  49. },
  50. {
  51. "name": "Ivan Starkov",
  52. "email": "istarkov@gmail.com"
  53. },
  54. {
  55. "name": "Gary Katsevman",
  56. "email": "git@gkatsev.com"
  57. }
  58. ],
  59. "dependencies": {},
  60. "deprecated": false,
  61. "description": "An Object.keys replacement, in case Object.keys is not available. From https://github.com/es-shims/es5-shim",
  62. "devDependencies": {
  63. "@ljharb/eslint-config": "^13.1.1",
  64. "covert": "^1.1.1",
  65. "eslint": "^5.13.0",
  66. "foreach": "^2.0.5",
  67. "indexof": "^0.0.1",
  68. "is": "^3.3.0",
  69. "tape": "^4.9.2"
  70. },
  71. "engines": {
  72. "node": ">= 0.4"
  73. },
  74. "homepage": "https://github.com/ljharb/object-keys#readme",
  75. "keywords": [
  76. "Object.keys",
  77. "keys",
  78. "ES5",
  79. "shim"
  80. ],
  81. "license": "MIT",
  82. "main": "index.js",
  83. "name": "object-keys",
  84. "repository": {
  85. "type": "git",
  86. "url": "git://github.com/ljharb/object-keys.git"
  87. },
  88. "scripts": {
  89. "audit": "npm audit",
  90. "coverage": "covert test/*.js",
  91. "coverage-quiet": "covert test/*.js --quiet",
  92. "lint": "eslint .",
  93. "postaudit": "rm package-lock.json",
  94. "posttest": "npm run --silent audit",
  95. "preaudit": "npm install --package-lock --package-lock-only",
  96. "pretest": "npm run --silent lint",
  97. "test": "npm run --silent tests-only",
  98. "tests-only": "node test/index.js"
  99. },
  100. "testling": {
  101. "files": "test/index.js",
  102. "browsers": [
  103. "iexplore/6.0..latest",
  104. "firefox/3.0..6.0",
  105. "firefox/15.0..latest",
  106. "firefox/nightly",
  107. "chrome/4.0..10.0",
  108. "chrome/20.0..latest",
  109. "chrome/canary",
  110. "opera/10.0..latest",
  111. "opera/next",
  112. "safari/4.0..latest",
  113. "ipad/6.0..latest",
  114. "iphone/6.0..latest",
  115. "android-browser/4.2"
  116. ]
  117. },
  118. "version": "1.1.1"
  119. }