package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@achrinza/node-ipc",
  3. "version": "9.2.2",
  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 || 10 || 12 || 14 || 16 || 17"
  11. },
  12. "dependencies": {
  13. "event-pubsub": "4.3.0",
  14. "js-message": "1.0.7",
  15. "@node-ipc/js-queue": "2.0.3"
  16. },
  17. "devDependencies": {
  18. "codacy-coverage": "2.0.0",
  19. "istanbul": "0.4.1",
  20. "jasmine": "2.4.1",
  21. "lockfile-lint": "^4.7.4",
  22. "node-cmd": "2.0.0"
  23. },
  24. "scripts": {
  25. "test-windows": "istanbul cover -x **/spec/** -dir ./spec/coverage ./node_modules/jasmine/bin/jasmine.js",
  26. "test": "istanbul cover -x **/spec/** -dir ./spec/coverage jasmine",
  27. "cover": "istanbul cover -x **/spec/** -dir ./spec/coverage jasmine",
  28. "coverup": "cat ./spec/coverage/lcov.info | codacy-coverage"
  29. },
  30. "pre-commit": [
  31. "cover"
  32. ],
  33. "keywords": [
  34. "IPC",
  35. "Neural Networking",
  36. "Machine Learning",
  37. "inter",
  38. "process",
  39. "communication",
  40. "unix",
  41. "windows",
  42. "win",
  43. "socket",
  44. "TCP",
  45. "UDP",
  46. "domain",
  47. "sockets",
  48. "threaded",
  49. "communication",
  50. "multi",
  51. "process",
  52. "shared",
  53. "memory"
  54. ],
  55. "author": "Brandon Nozaki Miller",
  56. "license": "MIT",
  57. "repository": {
  58. "type": "git",
  59. "url": "https://github.com/achrinza/node-ipc.git"
  60. },
  61. "bugs": {
  62. "url": "https://github.com/achrinza/node-ipc/issues"
  63. },
  64. "homepage": "https://github.com/achrinza/node-ipc"
  65. }