package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "redis-errors",
  3. "version": "1.2.0",
  4. "description": "Error classes used in node_redis",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "npm run coverage",
  8. "lint": "standard --fix",
  9. "posttest": "npm run lint && npm run coverage:check",
  10. "coverage": "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 --statement 100"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/NodeRedis/redis-errors.git"
  16. },
  17. "keywords": [
  18. "redis",
  19. "javascript",
  20. "node",
  21. "error"
  22. ],
  23. "engines": {
  24. "node": ">=4"
  25. },
  26. "devDependencies": {
  27. "istanbul": "^0.4.0",
  28. "mocha": "^3.1.2",
  29. "standard": "^10.0.0"
  30. },
  31. "author": "Ruben Bridgewater",
  32. "license": "MIT",
  33. "bugs": {
  34. "url": "https://github.com/NodeRedis/redis-errors/issues"
  35. },
  36. "homepage": "https://github.com/NodeRedis/redis-errors#readme",
  37. "directories": {
  38. "test": "test",
  39. "lib": "lib"
  40. }
  41. }