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.

41 lines
1.1 KiB

  1. {
  2. "name": "basic-auth",
  3. "description": "node.js basic auth parser",
  4. "version": "2.0.1",
  5. "license": "MIT",
  6. "keywords": [
  7. "basic",
  8. "auth",
  9. "authorization",
  10. "basicauth"
  11. ],
  12. "repository": "jshttp/basic-auth",
  13. "dependencies": {
  14. "safe-buffer": "5.1.2"
  15. },
  16. "devDependencies": {
  17. "eslint": "5.6.0",
  18. "eslint-config-standard": "12.0.0",
  19. "eslint-plugin-import": "2.14.0",
  20. "eslint-plugin-markdown": "1.0.0-beta.6",
  21. "eslint-plugin-node": "7.0.1",
  22. "eslint-plugin-promise": "4.0.1",
  23. "eslint-plugin-standard": "4.0.0",
  24. "istanbul": "0.4.5",
  25. "mocha": "5.2.0"
  26. },
  27. "files": [
  28. "HISTORY.md",
  29. "LICENSE",
  30. "index.js"
  31. ],
  32. "engines": {
  33. "node": ">= 0.8"
  34. },
  35. "scripts": {
  36. "lint": "eslint --plugin markdown --ext js,md .",
  37. "test": "mocha --check-leaks --reporter spec --bail",
  38. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
  39. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
  40. }
  41. }