package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "smart-buffer",
  3. "version": "1.1.15",
  4. "description": "A smarter Buffer that keeps track of its own read and write positions while growing endlessly.",
  5. "main": "lib/smart-buffer.js",
  6. "homepage": "https://github.com/JoshGlazebrook/smart-buffer/",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/JoshGlazebrook/smart-buffer.git"
  10. },
  11. "bugs": {
  12. "url": "https://github.com/JoshGlazebrook/smart-buffer/issues"
  13. },
  14. "keywords": [
  15. "buffer",
  16. "smart",
  17. "serialize",
  18. "packet",
  19. "network",
  20. "cursor",
  21. "simple"
  22. ],
  23. "engines": {
  24. "node": ">= 0.10.15",
  25. "npm": ">= 1.3.5"
  26. },
  27. "author": "Josh Glazebrook",
  28. "license": "MIT",
  29. "readmeFilename": "README.md",
  30. "devDependencies": {
  31. "chai": "^3.5.0",
  32. "coveralls": "^2.11.15",
  33. "istanbul": "^0.4.3",
  34. "mocha": "^3.2.0",
  35. "mocha-lcov-reporter": "^1.2.0"
  36. },
  37. "typings": "typings/index",
  38. "dependencies": {},
  39. "scripts": {
  40. "test": "mocha test/smart-buffer.test.js",
  41. "coverage": "istanbul cover node_modules/mocha/bin/_mocha recursive test",
  42. "fullcoverage": "node_modules/.bin/istanbul -include-all-sources cover node_modules/mocha/bin/_mocha recursive test"
  43. }
  44. }