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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. {
  2. "_from": "has-symbols@^1.0.1",
  3. "_id": "has-symbols@1.0.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
  6. "_location": "/has-symbols",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "has-symbols@^1.0.1",
  12. "name": "has-symbols",
  13. "escapedName": "has-symbols",
  14. "rawSpec": "^1.0.1",
  15. "saveSpec": null,
  16. "fetchSpec": "^1.0.1"
  17. },
  18. "_requiredBy": [
  19. "/es-abstract",
  20. "/is-symbol",
  21. "/object.assign"
  22. ],
  23. "_resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
  24. "_shasum": "9f5214758a44196c406d9bd76cebf81ec2dd31e8",
  25. "_spec": "has-symbols@^1.0.1",
  26. "_where": "C:\\Repos\\mdt5_webApplicationen\\StartMochaTutorial\\node_modules\\es-abstract",
  27. "author": {
  28. "name": "Jordan Harband",
  29. "email": "ljharb@gmail.com",
  30. "url": "http://ljharb.codes"
  31. },
  32. "auto-changelog": {
  33. "output": "CHANGELOG.md",
  34. "template": "keepachangelog",
  35. "unreleased": false,
  36. "commitLimit": false,
  37. "backfillLimit": false
  38. },
  39. "bugs": {
  40. "url": "https://github.com/ljharb/has-symbols/issues"
  41. },
  42. "bundleDependencies": false,
  43. "contributors": [
  44. {
  45. "name": "Jordan Harband",
  46. "email": "ljharb@gmail.com",
  47. "url": "http://ljharb.codes"
  48. }
  49. ],
  50. "dependencies": {},
  51. "deprecated": false,
  52. "description": "Determine if the JS environment has Symbol support. Supports spec, or shams.",
  53. "devDependencies": {
  54. "@ljharb/eslint-config": "^15.0.1",
  55. "auto-changelog": "^1.16.2",
  56. "core-js": "^2.6.10",
  57. "eslint": "^6.6.0",
  58. "get-own-property-symbols": "^0.9.4",
  59. "safe-publish-latest": "^1.1.4",
  60. "tape": "^4.11.0"
  61. },
  62. "engines": {
  63. "node": ">= 0.4"
  64. },
  65. "funding": {
  66. "url": "https://github.com/sponsors/ljharb"
  67. },
  68. "homepage": "https://github.com/ljharb/has-symbols#readme",
  69. "keywords": [
  70. "Symbol",
  71. "symbols",
  72. "typeof",
  73. "sham",
  74. "polyfill",
  75. "native",
  76. "core-js",
  77. "ES6"
  78. ],
  79. "license": "MIT",
  80. "main": "index.js",
  81. "name": "has-symbols",
  82. "repository": {
  83. "type": "git",
  84. "url": "git://github.com/ljharb/has-symbols.git"
  85. },
  86. "scripts": {
  87. "lint": "eslint *.js",
  88. "posttest": "npx aud",
  89. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
  90. "prepublish": "safe-publish-latest",
  91. "pretest": "npm run --silent lint",
  92. "test": "npm run --silent tests-only",
  93. "test:shams": "npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs",
  94. "test:shams:corejs": "node test/shams/core-js.js",
  95. "test:shams:getownpropertysymbols": "node test/shams/get-own-property-symbols.js",
  96. "test:staging": "node --harmony --es-staging test",
  97. "test:stock": "node test",
  98. "tests-only": "npm run --silent test:stock && npm run --silent test:staging && npm run --silent test:shams",
  99. "version": "auto-changelog && git add CHANGELOG.md"
  100. },
  101. "testling": {
  102. "files": "test/index.js",
  103. "browsers": [
  104. "iexplore/6.0..latest",
  105. "firefox/3.0..6.0",
  106. "firefox/15.0..latest",
  107. "firefox/nightly",
  108. "chrome/4.0..10.0",
  109. "chrome/20.0..latest",
  110. "chrome/canary",
  111. "opera/10.0..latest",
  112. "opera/next",
  113. "safari/4.0..latest",
  114. "ipad/6.0..latest",
  115. "iphone/6.0..latest",
  116. "android-browser/4.2"
  117. ]
  118. },
  119. "version": "1.0.1"
  120. }