package.json 732 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "seek-bzip",
  3. "version": "1.0.6",
  4. "contributors": [
  5. "C. Scott Ananian (http://cscott.net)",
  6. "Eli Skeggs",
  7. "Kevin Kwok",
  8. "Rob Landley (http://landley.net)"
  9. ],
  10. "description": "a pure-JavaScript Node.JS module for random-access decoding bzip2 data",
  11. "main": "./lib/index.js",
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/cscott/seek-bzip.git"
  15. },
  16. "license": "MIT",
  17. "bin": {
  18. "seek-bunzip": "./bin/seek-bunzip",
  19. "seek-table": "./bin/seek-bzip-table"
  20. },
  21. "directories": {
  22. "test": "test"
  23. },
  24. "dependencies": {
  25. "commander": "^2.8.1"
  26. },
  27. "devDependencies": {
  28. "fibers": "~1.0.6",
  29. "mocha": "~2.2.5"
  30. },
  31. "scripts": {
  32. "test": "mocha"
  33. }
  34. }