package.json 451 B

12345678910111213141516171819202122
  1. {
  2. "author": "T. Jameson Little <t.jameson.little@gmail.com>",
  3. "name": "crc32",
  4. "description": "CRC-32 implemented in JavaScript",
  5. "version": "0.2.2",
  6. "repository": {
  7. "type": "git",
  8. "url": "http://github.com/beatgammit/crc32.git"
  9. },
  10. "main": "./lib/crc32.js",
  11. "bin": {
  12. "crc32": "./bin/runner.js"
  13. },
  14. "scripts": {
  15. "test": "cd test ; ./runTests.sh"
  16. },
  17. "engines": {
  18. "node": ">= 0.4.0"
  19. },
  20. "dependencies": {},
  21. "devDependencies": {}
  22. }