package.json 649 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "author": {
  3. "name": "Joyent",
  4. "url": "http://www.joyent.com"
  5. },
  6. "name": "util",
  7. "description": "Node.JS util module",
  8. "keywords": [
  9. "util"
  10. ],
  11. "version": "0.10.3",
  12. "homepage": "https://github.com/defunctzombie/node-util",
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/defunctzombie/node-util"
  16. },
  17. "main": "./util.js",
  18. "scripts": {
  19. "test": "node test/node/*.js && zuul test/browser/*.js"
  20. },
  21. "dependencies": {
  22. "inherits": "2.0.1"
  23. },
  24. "license": "MIT",
  25. "devDependencies": {
  26. "zuul": "~1.0.9"
  27. },
  28. "browser": {
  29. "./support/isBuffer.js": "./support/isBufferBrowser.js"
  30. }
  31. }