package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "redis-parser",
  3. "version": "3.0.0",
  4. "description": "Javascript Redis protocol (RESP) parser",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "npm run coverage",
  8. "benchmark": "node ./benchmark",
  9. "lint": "standard --fix",
  10. "posttest": "npm run lint && npm run coverage:check",
  11. "coverage": "node ./node_modules/istanbul/lib/cli.js cover --preserve-comments ./node_modules/mocha/bin/_mocha -- -R spec",
  12. "coverage:check": "node ./node_modules/istanbul/lib/cli.js check-coverage --branch 100 --statement 100"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/NodeRedis/node-redis-parser.git"
  17. },
  18. "keywords": [
  19. "redis",
  20. "protocol",
  21. "parser",
  22. "database",
  23. "javascript",
  24. "node",
  25. "nodejs",
  26. "resp",
  27. "hiredis"
  28. ],
  29. "engines": {
  30. "node": ">=4"
  31. },
  32. "dependencies": {
  33. "redis-errors": "^1.0.0"
  34. },
  35. "devDependencies": {
  36. "benchmark": "^2.1.0",
  37. "codeclimate-test-reporter": "^0.4.0",
  38. "hiredis": "^0.5.0",
  39. "istanbul": "^0.4.0",
  40. "mocha": "^3.1.2",
  41. "standard": "^10.0.0"
  42. },
  43. "author": "Ruben Bridgewater",
  44. "license": "MIT",
  45. "bugs": {
  46. "url": "https://github.com/NodeRedis/node-redis-parser/issues"
  47. },
  48. "homepage": "https://github.com/NodeRedis/node-redis-parser#readme",
  49. "directories": {
  50. "test": "test",
  51. "lib": "lib"
  52. }
  53. }