package.json 679 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "cyclist",
  3. "version": "1.0.1",
  4. "repository": {
  5. "type": "git",
  6. "url": "git://github.com/mafintosh/cyclist"
  7. },
  8. "description": "Cyclist is an efficient cyclic list implemention.",
  9. "dependencies": {},
  10. "keywords": [
  11. "circular",
  12. "buffer",
  13. "ring",
  14. "cyclic",
  15. "data"
  16. ],
  17. "author": "Mathias Buus Madsen <mathiasbuus@gmail.com>",
  18. "devDependencies": {
  19. "standard": "^3.8.0",
  20. "tape": "^4.0.0"
  21. },
  22. "bugs": {
  23. "url": "https://github.com/mafintosh/cyclist/issues"
  24. },
  25. "homepage": "https://github.com/mafintosh/cyclist",
  26. "main": "index.js",
  27. "scripts": {
  28. "test": "standard && tape test.js"
  29. },
  30. "license": "MIT"
  31. }