package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "redis-commands",
  3. "version": "1.7.0",
  4. "description": "Redis commands",
  5. "main": "index.js",
  6. "scripts": {
  7. "pretest": "npm run lint",
  8. "test": "mocha",
  9. "posttest": "npm run coverage && 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 --branch 100 --statement 100",
  12. "build": "node tools/build",
  13. "lint": "standard --fix --verbose | snazzy"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/NodeRedis/redis-commands.git"
  18. },
  19. "keywords": [
  20. "redis",
  21. "commands",
  22. "prefix"
  23. ],
  24. "author": "luin <i@zihua.li> (http://zihua.li)",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/NodeRedis/redis-commands/issues"
  28. },
  29. "homepage": "https://github.com/NodeRedis/redis-commands",
  30. "devDependencies": {
  31. "chai": "^4.0.1",
  32. "codeclimate-test-reporter": "^0.5.1",
  33. "ioredis": "^4.9.0",
  34. "istanbul": "^0.4.3",
  35. "safe-stable-stringify": "^1.0.0",
  36. "mocha": "^6.0.0",
  37. "snazzy": "^8.0.0",
  38. "standard": "^12.0.0"
  39. },
  40. "dependencies": {}
  41. }