package.json 772 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "scmp",
  3. "version": "2.1.0",
  4. "description": "safe, constant-time comparison of Buffers",
  5. "main": "index.js",
  6. "scripts": {
  7. "pretest": "standard --verbose",
  8. "test": "mocha",
  9. "posttest": "node benchmark/benchmark.js && node benchmark/crypto-check.js"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/freewil/scmp.git"
  14. },
  15. "keywords": [
  16. "safe-compare",
  17. "compare",
  18. "time-equivalent-comparison",
  19. "time equivalent",
  20. "constant-time",
  21. "constant time"
  22. ],
  23. "author": "Sean Lavine",
  24. "license": "BSD-3-Clause",
  25. "readmeFilename": "README.md",
  26. "devDependencies": {
  27. "benchmark": "^2.1.4",
  28. "mocha": "^6.2.0",
  29. "safe-buffer": "^5.1.2",
  30. "standard": "^14.3.1"
  31. },
  32. "dependencies": {}
  33. }