package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "cluster-key-slot",
  3. "version": "1.1.0",
  4. "description": "Generates CRC hashes for strings - for use by node redis clients to determine key slots.",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "benchmark": "node ./benchmark",
  8. "posttest": "eslint ./lib && npm run coveralls",
  9. "coveralls": "cat ./coverage/lcov.info | coveralls",
  10. "test": "node ./node_modules/istanbul/lib/cli.js cover --preserve-comments ./node_modules/mocha/bin/_mocha -- -R spec",
  11. "coverage:check": "node ./node_modules/istanbul/lib/cli.js check-coverage --branch 100 --statement 100"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/Salakar/cluster-key-slot.git"
  16. },
  17. "keywords": [
  18. "redis",
  19. "hash",
  20. "crc",
  21. "slot",
  22. "calc",
  23. "javascript",
  24. "node",
  25. "node_redis",
  26. "ioredis"
  27. ],
  28. "engines": {
  29. "node": ">=0.10.0"
  30. },
  31. "devDependencies": {
  32. "benchmark": "^2.1.0",
  33. "codeclimate-test-reporter": "^0.3.1",
  34. "coveralls": "^2.11.9",
  35. "eslint": "^3.5.0",
  36. "eslint-config-airbnb-base": "^7.1.0",
  37. "eslint-plugin-import": "^1.8.0",
  38. "istanbul": "^0.4.0",
  39. "mocha": "^3.0.2"
  40. },
  41. "author": {
  42. "name": "Mike Diarmid",
  43. "email": "mike.diarmid@gmail.com",
  44. "url": "http://github.com/Salakar/"
  45. },
  46. "license": "APACHE-2.0",
  47. "bugs": {
  48. "url": "https://github.com/Salakar/cluster-key-slot/issues"
  49. },
  50. "homepage": "https://github.com/Salakar/cluster-key-slot#readme",
  51. "directories": {
  52. "test": "test",
  53. "lib": "lib"
  54. }
  55. }