package.json 936 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "create-hash",
  3. "version": "1.2.0",
  4. "description": "create hashes for browserify",
  5. "browser": "browser.js",
  6. "main": "index.js",
  7. "scripts": {
  8. "standard": "standard",
  9. "test": "npm run-script standard && npm run-script unit",
  10. "unit": "node test.js | tspec"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git@github.com:crypto-browserify/createHash.git"
  15. },
  16. "keywords": [
  17. "crypto"
  18. ],
  19. "author": "",
  20. "license": "MIT",
  21. "bugs": {
  22. "url": "https://github.com/crypto-browserify/createHash/issues"
  23. },
  24. "homepage": "https://github.com/crypto-browserify/createHash",
  25. "devDependencies": {
  26. "hash-test-vectors": "^1.3.2",
  27. "safe-buffer": "^5.0.1",
  28. "standard": "^10.0.2",
  29. "tap-spec": "^2.1.2",
  30. "tape": "^4.6.3"
  31. },
  32. "dependencies": {
  33. "cipher-base": "^1.0.1",
  34. "inherits": "^2.0.1",
  35. "md5.js": "^1.3.4",
  36. "ripemd160": "^2.0.1",
  37. "sha.js": "^2.4.0"
  38. }
  39. }