package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. "__npminstall_done": "Thu Dec 24 2020 20:21:00 GMT+0800 (CST)",
  36. "_from": "hash.js@1.1.7",
  37. "_resolved": "https://registry.npm.taobao.org/hash.js/download/hash.js-1.1.7.tgz"
  38. }