package.json 764 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "bytes",
  3. "description": "Utility to parse a string bytes to bytes and vice-versa",
  4. "version": "2.2.0",
  5. "author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)",
  6. "contributors": [
  7. "Jed Watson <jed.watson@me.com>",
  8. "Théo FIDRY <theo.fidry@gmail.com>"
  9. ],
  10. "license": "MIT",
  11. "keywords": [
  12. "byte",
  13. "bytes",
  14. "utility",
  15. "parse",
  16. "parser",
  17. "convert",
  18. "converter"
  19. ],
  20. "repository": "visionmedia/bytes.js",
  21. "component": {
  22. "scripts": {
  23. "bytes/index.js": "index.js"
  24. }
  25. },
  26. "devDependencies": {
  27. "mocha": "1.21.5"
  28. },
  29. "files": [
  30. "History.md",
  31. "LICENSE",
  32. "Readme.md",
  33. "index.js"
  34. ],
  35. "scripts": {
  36. "test": "mocha --check-leaks --reporter spec"
  37. }
  38. }