package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "sendmessage",
  3. "version": "1.1.0",
  4. "description": "Send a cross process message if message channel is connected.",
  5. "main": "index.js",
  6. "files": [
  7. "index.js"
  8. ],
  9. "scripts": {
  10. "test": "mocha --check-leaks -R spec -t 5000 -r should test/*.test.js",
  11. "test-cov": "node node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --check-leaks -t 5000 -r should test/*.test.js",
  12. "test-travis": "node node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- --check-leaks -t 5000 -r should test/*.test.js",
  13. "jshint": "jshint .",
  14. "autod": "autod -w --prefix '~'",
  15. "cnpm": "npm install --registry=https://registry.npm.taobao.org",
  16. "contributors": "contributors -f plain -o AUTHORS"
  17. },
  18. "dependencies": {},
  19. "devDependencies": {
  20. "autod": "*",
  21. "contributors": "*",
  22. "istanbul": "*",
  23. "jshint": "*",
  24. "mm": "^1.5.1",
  25. "mocha": "*",
  26. "should": "*"
  27. },
  28. "homepage": "https://github.com/node-modules/sendmessage",
  29. "repository": {
  30. "type": "git",
  31. "url": "git://github.com/node-modules/sendmessage.git",
  32. "web": "https://github.com/node-modules/sendmessage"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/node-modules/sendmessage/issues",
  36. "email": "fengmk2@gmail.com"
  37. },
  38. "keywords": [
  39. "sendmessage",
  40. "send",
  41. "cluster",
  42. "message",
  43. "channel closed"
  44. ],
  45. "engines": {
  46. "node": ">= 0.10.0"
  47. },
  48. "author": "fengmk2 <fengmk2@gmail.com> (http://fengmk2.github.com)",
  49. "license": "MIT"
  50. }