package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@ioredis/commands",
  3. "version": "1.1.1",
  4. "description": "Redis commands",
  5. "main": "built/index.js",
  6. "files": [
  7. "built/",
  8. "commands.json"
  9. ],
  10. "scripts": {
  11. "pretest": "npm run lint",
  12. "test": "mocha",
  13. "build": "rm -rf built && tsc",
  14. "gen": "node tools/build",
  15. "lint": "standard --fix --verbose | snazzy",
  16. "release": "release-it"
  17. },
  18. "publishConfig": {
  19. "access": "public",
  20. "registry": "https://registry.npmjs.org/"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/ioredis/commands.git"
  25. },
  26. "keywords": [
  27. "redis",
  28. "commands",
  29. "prefix"
  30. ],
  31. "author": "Zihua Li <i@zihua.li> (http://zihua.li)",
  32. "license": "MIT",
  33. "bugs": {
  34. "url": "https://github.com/ioredis/commands/issues"
  35. },
  36. "homepage": "https://github.com/ioredis/commands",
  37. "devDependencies": {
  38. "@release-it/conventional-changelog": "^4.2.0",
  39. "@semantic-release/changelog": "^6.0.1",
  40. "@semantic-release/commit-analyzer": "^9.0.2",
  41. "@semantic-release/git": "^10.0.1",
  42. "chai": "^4.3.6",
  43. "ioredis": "^5.0.0",
  44. "mocha": "^9.2.1",
  45. "release-it": "^14.12.5",
  46. "safe-stable-stringify": "^2.3.1",
  47. "semantic-release": "^19.0.2",
  48. "snazzy": "^9.0.0",
  49. "standard": "^16.0.4",
  50. "typescript": "^4.6.2"
  51. }
  52. }