package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@achrinza/node-ipc",
  3. "version": "9.2.7",
  4. "description": "A nodejs module for local and remote Inter Process Communication (IPC), Neural Networking, and able to facilitate machine learning.",
  5. "main": "node-ipc.js",
  6. "directories": {
  7. "example": "example"
  8. },
  9. "engines": {
  10. "node": "8 || 9 || 10 || 11 || 12 || 13 || 14 || 15 || 16 || 17 || 18 || 19 || 20"
  11. },
  12. "dependencies": {
  13. "@node-ipc/js-queue": "2.0.3",
  14. "event-pubsub": "4.3.0",
  15. "js-message": "1.0.7"
  16. },
  17. "devDependencies": {
  18. "istanbul": "0.4.1",
  19. "jasmine": "2.4.1",
  20. "lockfile-lint": "^4.7.4",
  21. "node-cmd": "2.0.0"
  22. },
  23. "scripts": {
  24. "istanbul": "istanbul cover -x ./spec/**",
  25. "test-windows": "npm run-script istanbul -- ./node_modules/jasmine/bin/jasmine.js",
  26. "test": "npm run-script istanbul -- jasmine"
  27. },
  28. "keywords": [
  29. "IPC",
  30. "Neural Networking",
  31. "Machine Learning",
  32. "inter",
  33. "process",
  34. "communication",
  35. "unix",
  36. "windows",
  37. "win",
  38. "socket",
  39. "TCP",
  40. "UDP",
  41. "domain",
  42. "sockets",
  43. "threaded",
  44. "communication",
  45. "multi",
  46. "process",
  47. "shared",
  48. "memory"
  49. ],
  50. "author": "Brandon Nozaki Miller",
  51. "license": "MIT",
  52. "repository": {
  53. "type": "git",
  54. "url": "https://github.com/achrinza/node-ipc.git"
  55. },
  56. "bugs": {
  57. "url": "https://github.com/achrinza/node-ipc/issues"
  58. },
  59. "files": [
  60. "dao",
  61. "entities",
  62. "local-node-ipc-certs",
  63. "services"
  64. ],
  65. "homepage": "https://github.com/achrinza/node-ipc"
  66. }