package.json 549 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "packet-reader",
  3. "version": "1.0.0",
  4. "description": "Read binary packets...",
  5. "main": "index.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "scripts": {
  10. "test": "mocha"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/brianc/node-packet-reader.git"
  15. },
  16. "author": "Brian M. Carlson",
  17. "license": "MIT",
  18. "bugs": {
  19. "url": "https://github.com/brianc/node-packet-reader/issues"
  20. },
  21. "homepage": "https://github.com/brianc/node-packet-reader",
  22. "devDependencies": {
  23. "mocha": "~1.21.5"
  24. }
  25. }