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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. {
  2. "_from": "define-properties@^1.1.3",
  3. "_id": "define-properties@1.1.3",
  4. "_inBundle": false,
  5. "_integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
  6. "_location": "/define-properties",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "define-properties@^1.1.3",
  12. "name": "define-properties",
  13. "escapedName": "define-properties",
  14. "rawSpec": "^1.1.3",
  15. "saveSpec": null,
  16. "fetchSpec": "^1.1.3"
  17. },
  18. "_requiredBy": [
  19. "/object.assign",
  20. "/object.getownpropertydescriptors",
  21. "/string.prototype.trimend",
  22. "/string.prototype.trimleft",
  23. "/string.prototype.trimright",
  24. "/string.prototype.trimstart"
  25. ],
  26. "_resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
  27. "_shasum": "cf88da6cbee26fe6db7094f61d870cbd84cee9f1",
  28. "_spec": "define-properties@^1.1.3",
  29. "_where": "C:\\Repos\\mdt5_webApplicationen\\StartMochaTutorial\\node_modules\\object.getownpropertydescriptors",
  30. "author": {
  31. "name": "Jordan Harband"
  32. },
  33. "bugs": {
  34. "url": "https://github.com/ljharb/define-properties/issues"
  35. },
  36. "bundleDependencies": false,
  37. "dependencies": {
  38. "object-keys": "^1.0.12"
  39. },
  40. "deprecated": false,
  41. "description": "Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines.",
  42. "devDependencies": {
  43. "@ljharb/eslint-config": "^13.0.0",
  44. "covert": "^1.1.0",
  45. "eslint": "^5.3.0",
  46. "jscs": "^3.0.7",
  47. "nsp": "^3.2.1",
  48. "tape": "^4.9.0"
  49. },
  50. "engines": {
  51. "node": ">= 0.4"
  52. },
  53. "homepage": "https://github.com/ljharb/define-properties#readme",
  54. "keywords": [
  55. "Object.defineProperty",
  56. "Object.defineProperties",
  57. "object",
  58. "property descriptor",
  59. "descriptor",
  60. "define",
  61. "ES5"
  62. ],
  63. "license": "MIT",
  64. "main": "index.js",
  65. "name": "define-properties",
  66. "repository": {
  67. "type": "git",
  68. "url": "git://github.com/ljharb/define-properties.git"
  69. },
  70. "scripts": {
  71. "coverage": "covert test/*.js",
  72. "coverage-quiet": "covert test/*.js --quiet",
  73. "eslint": "eslint test/*.js *.js",
  74. "jscs": "jscs test/*.js *.js",
  75. "lint": "npm run --silent jscs && npm run --silent eslint",
  76. "posttest": "npm run --silent security",
  77. "pretest": "npm run --silent lint",
  78. "security": "nsp check",
  79. "test": "npm run --silent tests-only",
  80. "tests-only": "node test/index.js"
  81. },
  82. "testling": {
  83. "files": "test/index.js",
  84. "browsers": [
  85. "iexplore/6.0..latest",
  86. "firefox/3.0..6.0",
  87. "firefox/15.0..latest",
  88. "firefox/nightly",
  89. "chrome/4.0..10.0",
  90. "chrome/20.0..latest",
  91. "chrome/canary",
  92. "opera/10.0..latest",
  93. "opera/next",
  94. "safari/4.0..latest",
  95. "ipad/6.0..latest",
  96. "iphone/6.0..latest",
  97. "android-browser/4.2"
  98. ]
  99. },
  100. "version": "1.1.3"
  101. }