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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. {
  2. "_from": "get-func-name@^2.0.0",
  3. "_id": "get-func-name@2.0.0",
  4. "_inBundle": false,
  5. "_integrity": "sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=",
  6. "_location": "/get-func-name",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "get-func-name@^2.0.0",
  12. "name": "get-func-name",
  13. "escapedName": "get-func-name",
  14. "rawSpec": "^2.0.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^2.0.0"
  17. },
  18. "_requiredBy": [
  19. "/chai"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz",
  22. "_shasum": "ead774abee72e20409433a066366023dd6887a41",
  23. "_spec": "get-func-name@^2.0.0",
  24. "_where": "C:\\Repos\\mdt5_webApplicationen\\StartMochaTutorial\\node_modules\\chai",
  25. "author": {
  26. "name": "Jake Luer",
  27. "email": "jake@alogicalparadox.com",
  28. "url": "http://alogicalparadox.com"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/chaijs/get-func-name/issues"
  32. },
  33. "bundleDependencies": false,
  34. "config": {
  35. "ghooks": {
  36. "commit-msg": "validate-commit-msg"
  37. }
  38. },
  39. "contributors": [
  40. {
  41. "name": "Keith Cirkel",
  42. "url": "https://github.com/keithamus"
  43. },
  44. {
  45. "name": "Lucas Fernandes da Costa",
  46. "url": "https://github.com/lucasfcosta"
  47. },
  48. {
  49. "name": "Grant Snodgrass",
  50. "url": "https://github.com/meeber"
  51. },
  52. {
  53. "name": "Lucas Vieira",
  54. "url": "https://github.com/vieiralucas"
  55. },
  56. {
  57. "name": "Aleksey Shvayka",
  58. "url": "https://github.com/shvaikalesh"
  59. }
  60. ],
  61. "dependencies": {},
  62. "deprecated": false,
  63. "description": "Utility for getting a function's name for node and the browser",
  64. "devDependencies": {
  65. "browserify": "^13.0.0",
  66. "browserify-istanbul": "^2.0.0",
  67. "coveralls": "2.11.14",
  68. "eslint": "^2.4.0",
  69. "eslint-config-strict": "^9.1.0",
  70. "eslint-plugin-filenames": "^1.1.0",
  71. "ghooks": "^1.0.1",
  72. "istanbul": "^0.4.2",
  73. "karma": "^1.3.0",
  74. "karma-browserify": "^5.0.2",
  75. "karma-coverage": "^1.1.1",
  76. "karma-mocha": "^1.2.0",
  77. "karma-phantomjs-launcher": "^1.0.0",
  78. "karma-sauce-launcher": "^1.0.0",
  79. "lcov-result-merger": "^1.0.2",
  80. "mocha": "^3.1.2",
  81. "phantomjs-prebuilt": "^2.1.5",
  82. "semantic-release": "^4.3.5",
  83. "simple-assert": "^1.0.0",
  84. "travis-after-all": "^1.4.4",
  85. "validate-commit-msg": "^2.3.1"
  86. },
  87. "engines": {
  88. "node": "*"
  89. },
  90. "eslintConfig": {
  91. "extends": [
  92. "strict/es5"
  93. ],
  94. "env": {
  95. "es6": true
  96. },
  97. "globals": {
  98. "HTMLElement": false
  99. },
  100. "rules": {
  101. "complexity": 0,
  102. "max-statements": 0
  103. }
  104. },
  105. "files": [
  106. "index.js",
  107. "get-func-name.js"
  108. ],
  109. "homepage": "https://github.com/chaijs/get-func-name#readme",
  110. "keywords": [
  111. "get-func-name",
  112. "chai util"
  113. ],
  114. "license": "MIT",
  115. "main": "./index.js",
  116. "name": "get-func-name",
  117. "repository": {
  118. "type": "git",
  119. "url": "git+ssh://git@github.com/chaijs/get-func-name.git"
  120. },
  121. "scripts": {
  122. "build": "browserify --bare $npm_package_main --standalone getFuncName -o get-func-name.js",
  123. "lint": "eslint --ignore-path .gitignore .",
  124. "prepublish": "npm run build",
  125. "pretest": "npm run lint",
  126. "semantic-release": "semantic-release pre && npm publish && semantic-release post",
  127. "test": "npm run test:node && npm run test:browser && npm run upload-coverage",
  128. "test:browser": "karma start --singleRun=true",
  129. "test:node": "istanbul cover _mocha",
  130. "upload-coverage": "lcov-result-merger 'coverage/**/lcov.info' | coveralls; exit 0"
  131. },
  132. "version": "2.0.0"
  133. }