package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "farmhash",
  3. "version": "3.3.1",
  4. "author": "Lovell Fuller <npm@lovell.info>",
  5. "contributors": [
  6. "Matt Ranney <mjr@ranney.com>",
  7. "Jonas Hermsmeier <jhermsmeier@gmail.com> (https://jhermsmeier.de)"
  8. ],
  9. "description": "Node.js implementation of FarmHash, Google's family of very fast hash functions",
  10. "scripts": {
  11. "install": "prebuild-install || node-gyp rebuild",
  12. "test": "semistandard && cpplint && node test/unit"
  13. },
  14. "main": "index.js",
  15. "files": [
  16. "binding.gyp",
  17. "index.d.ts",
  18. "src/"
  19. ],
  20. "repository": {
  21. "type": "git",
  22. "url": "git://github.com/lovell/farmhash"
  23. },
  24. "keywords": [
  25. "farmhash",
  26. "hash",
  27. "cityhash",
  28. "murmurhash",
  29. "fingerprint"
  30. ],
  31. "dependencies": {
  32. "node-addon-api": "^5.1.0",
  33. "prebuild-install": "^7.1.2"
  34. },
  35. "devDependencies": {
  36. "cc": "^3.0.1",
  37. "prebuild": "^11.0.4",
  38. "semistandard": "^16.0.1"
  39. },
  40. "license": "Apache-2.0",
  41. "engines": {
  42. "node": ">=10"
  43. },
  44. "binary": {
  45. "napi_versions": [
  46. 3
  47. ]
  48. },
  49. "config": {
  50. "runtime": "napi",
  51. "target": 3
  52. },
  53. "cc": {
  54. "linelength": "120",
  55. "ignore": [
  56. "node_modules",
  57. "src/upstream"
  58. ]
  59. }
  60. }