package.json 855 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "hash.js",
  3. "version": "1.1.7",
  4. "description": "Various hash functions that could be run by both browser and node",
  5. "main": "lib/hash.js",
  6. "typings": "lib/hash.d.ts",
  7. "scripts": {
  8. "test": "mocha --reporter=spec test/*-test.js && npm run lint",
  9. "lint": "eslint lib/*.js lib/**/*.js lib/**/**/*.js test/*.js"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git@github.com:indutny/hash.js"
  14. },
  15. "keywords": [
  16. "hash",
  17. "sha256",
  18. "sha224",
  19. "hmac"
  20. ],
  21. "author": "Fedor Indutny <fedor@indutny.com>",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/indutny/hash.js/issues"
  25. },
  26. "homepage": "https://github.com/indutny/hash.js",
  27. "dependencies": {
  28. "inherits": "^2.0.3",
  29. "minimalistic-assert": "^1.0.1"
  30. },
  31. "devDependencies": {
  32. "eslint": "^4.19.1",
  33. "mocha": "^5.2.0"
  34. }
  35. }