package.json 1016 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@redis/graph",
  3. "version": "1.1.1",
  4. "license": "MIT",
  5. "main": "./dist/index.js",
  6. "types": "./dist/index.d.ts",
  7. "files": [
  8. "dist/"
  9. ],
  10. "scripts": {
  11. "test": "nyc -r text-summary -r lcov mocha -r source-map-support/register -r ts-node/register './lib/**/*.spec.ts'",
  12. "build": "tsc",
  13. "documentation": "typedoc"
  14. },
  15. "peerDependencies": {
  16. "@redis/client": "^1.0.0"
  17. },
  18. "devDependencies": {
  19. "@istanbuljs/nyc-config-typescript": "^1.0.2",
  20. "@redis/test-utils": "*",
  21. "@types/node": "^20.6.2",
  22. "nyc": "^15.1.0",
  23. "release-it": "^16.1.5",
  24. "source-map-support": "^0.5.21",
  25. "ts-node": "^10.9.1",
  26. "typedoc": "^0.25.1",
  27. "typescript": "^5.2.2"
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "git://github.com/redis/node-redis.git"
  32. },
  33. "bugs": {
  34. "url": "https://github.com/redis/node-redis/issues"
  35. },
  36. "homepage": "https://github.com/redis/node-redis/tree/master/packages/graph",
  37. "keywords": [
  38. "redis",
  39. "RedisGraph"
  40. ]
  41. }