package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "node-object-hash",
  3. "version": "1.4.2",
  4. "description": "Node.js object hash library with properties/arrays sorting to provide constant hashes",
  5. "main": "index.js",
  6. "homepage": "https://github.com/SkeLLLa/node-object-hash",
  7. "directories": {
  8. "test": "test"
  9. },
  10. "devDependencies": {
  11. "@types/node": "^10.0.0",
  12. "benchmark": "^2.1.4",
  13. "chai": "^4.1.2",
  14. "eslint": "^4.19.1",
  15. "eslint-config-google": "^0.9.1",
  16. "faker": "^4.1.0",
  17. "hash-object": "^0.1.7",
  18. "istanbul": "^0.4.5",
  19. "jsdoc-to-markdown": "^4.0.0",
  20. "mocha": "^5.2.0",
  21. "object-hash": "^1.3.0",
  22. "typescript": "^3.2.4"
  23. },
  24. "scripts": {
  25. "test": "mocha",
  26. "lint": "eslint .",
  27. "cover": "istanbul cover _mocha",
  28. "bench": "node --expose-gc ./bench/index.js",
  29. "bench2": "node --expose-gc ./bench/bench.js",
  30. "jsdoc": "jsdoc2md -t ./README.hbs --private 'objectSorter.js' 'index.js' > README.md && jsdoc2md --private 'objectSorter.js' 'index.js' > API.md",
  31. "tsc": "tsc index.d.ts objectSorter.d.ts --noImplicitAny",
  32. "outdated": "npm outdate || true"
  33. },
  34. "repository": {
  35. "type": "git",
  36. "url": "git@github.com:SkeLLLa/node-object-hash.git"
  37. },
  38. "bugs": {
  39. "url": "https://github.com/SkeLLLa/node-object-hash/issues"
  40. },
  41. "keywords": [
  42. "hash",
  43. "object",
  44. "hash-object",
  45. "object-hash",
  46. "es6",
  47. "crypto"
  48. ],
  49. "author": {
  50. "name": "Alexander Kureniov",
  51. "email": "s@zxc.pp.ua",
  52. "url": "https://github.com/SkeLLLa"
  53. },
  54. "license": "ISC",
  55. "engines": {
  56. "node": ">=0.10.0"
  57. }
  58. }