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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. {
  2. "_from": "pathval@^1.1.0",
  3. "_id": "pathval@1.1.0",
  4. "_inBundle": false,
  5. "_integrity": "sha1-uULm1L3mUwBe9rcTYd74cn0GReA=",
  6. "_location": "/pathval",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "pathval@^1.1.0",
  12. "name": "pathval",
  13. "escapedName": "pathval",
  14. "rawSpec": "^1.1.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^1.1.0"
  17. },
  18. "_requiredBy": [
  19. "/chai"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz",
  22. "_shasum": "b942e6d4bde653005ef6b71361def8727d0645e0",
  23. "_spec": "pathval@^1.1.0",
  24. "_where": "C:\\Repos\\mdt5_webApplicationen\\StartMochaTutorial\\node_modules\\chai",
  25. "author": {
  26. "name": "Veselin Todorov",
  27. "email": "hi@vesln.com"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/chaijs/pathval/issues"
  31. },
  32. "bundleDependencies": false,
  33. "config": {
  34. "ghooks": {
  35. "commit-msg": "validate-commit-msg"
  36. }
  37. },
  38. "deprecated": false,
  39. "description": "Object value retrieval given a string path",
  40. "devDependencies": {
  41. "browserify": "^13.0.0",
  42. "browserify-istanbul": "^1.0.0",
  43. "coveralls": "2.11.9",
  44. "eslint": "^2.4.0",
  45. "eslint-config-strict": "^8.5.0",
  46. "eslint-plugin-filenames": "^0.2.0",
  47. "ghooks": "^1.0.1",
  48. "istanbul": "^0.4.2",
  49. "karma": "^0.13.22",
  50. "karma-browserify": "^5.0.2",
  51. "karma-coverage": "^0.5.5",
  52. "karma-mocha": "^0.2.2",
  53. "karma-phantomjs-launcher": "^1.0.0",
  54. "karma-sauce-launcher": "^0.3.1",
  55. "lcov-result-merger": "^1.0.2",
  56. "mocha": "^3.1.2",
  57. "phantomjs-prebuilt": "^2.1.5",
  58. "semantic-release": "^4.3.5",
  59. "simple-assert": "^1.0.0",
  60. "travis-after-all": "^1.4.4",
  61. "validate-commit-msg": "^2.3.1"
  62. },
  63. "engines": {
  64. "node": "*"
  65. },
  66. "eslintConfig": {
  67. "extends": [
  68. "strict/es5"
  69. ],
  70. "env": {
  71. "es6": true
  72. },
  73. "globals": {
  74. "HTMLElement": false
  75. },
  76. "rules": {
  77. "complexity": 0,
  78. "max-statements": 0
  79. }
  80. },
  81. "files": [
  82. "index.js",
  83. "pathval.js"
  84. ],
  85. "homepage": "https://github.com/chaijs/pathval",
  86. "keywords": [
  87. "pathval",
  88. "value retrieval",
  89. "chai util"
  90. ],
  91. "license": "MIT",
  92. "main": "./index.js",
  93. "name": "pathval",
  94. "repository": {
  95. "type": "git",
  96. "url": "git+ssh://git@github.com/chaijs/pathval.git"
  97. },
  98. "scripts": {
  99. "build": "browserify --bare $npm_package_main --standalone pathval -o pathval.js",
  100. "lint": "eslint --ignore-path .gitignore .",
  101. "prepublish": "npm run build",
  102. "pretest": "npm run lint",
  103. "semantic-release": "semantic-release pre && npm publish && semantic-release post",
  104. "test": "npm run test:node && npm run test:browser && npm run upload-coverage",
  105. "test:browser": "karma start --singleRun=true",
  106. "test:node": "istanbul cover _mocha",
  107. "upload-coverage": "lcov-result-merger 'coverage/**/lcov.info' | coveralls; exit 0"
  108. },
  109. "version": "1.1.0"
  110. }