package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "util",
  3. "description": "Node.js's util module for all engines",
  4. "version": "0.12.3",
  5. "author": {
  6. "name": "Joyent",
  7. "url": "http://www.joyent.com"
  8. },
  9. "browser": {
  10. "./support/isBuffer.js": "./support/isBufferBrowser.js"
  11. },
  12. "dependencies": {
  13. "inherits": "^2.0.3",
  14. "is-arguments": "^1.0.4",
  15. "is-generator-function": "^1.0.7",
  16. "is-typed-array": "^1.1.3",
  17. "safe-buffer": "^5.1.2",
  18. "which-typed-array": "^1.1.2"
  19. },
  20. "devDependencies": {
  21. "airtap": "~1.0.0",
  22. "core-js": "^3.6.5",
  23. "is-async-supported": "~1.2.0",
  24. "object.assign": "~4.1.0",
  25. "object.entries": "^1.1.0",
  26. "run-series": "~1.1.4",
  27. "tape": "~4.9.0"
  28. },
  29. "files": [
  30. "util.js",
  31. "support"
  32. ],
  33. "homepage": "https://github.com/browserify/node-util",
  34. "keywords": [
  35. "util"
  36. ],
  37. "license": "MIT",
  38. "main": "./util.js",
  39. "repository": {
  40. "type": "git",
  41. "url": "git://github.com/browserify/node-util"
  42. },
  43. "scripts": {
  44. "test": "node test/node/index.js",
  45. "test:browsers": "airtap test/browser/index.js",
  46. "test:browsers:with-polyfills": "airtap test/browser/with-polyfills.js",
  47. "test:browsers:with-polyfills:local": "npm run test:browsers:with-polyfills -- --local",
  48. "test:browsers:local": "npm run test:browsers -- --local"
  49. }
  50. }