package.json 696 B

1234567891011121314151617181920212223242526272829303132333435
  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.4",
  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. "files": [
  19. "util.js",
  20. "support"
  21. ],
  22. "scripts": {
  23. "test": "node test/node/*.js && zuul test/browser/*.js"
  24. },
  25. "dependencies": {
  26. "inherits": "2.0.3"
  27. },
  28. "license": "MIT",
  29. "devDependencies": {
  30. "zuul": "~1.0.9"
  31. },
  32. "browser": {
  33. "./support/isBuffer.js": "./support/isBufferBrowser.js"
  34. }
  35. }