package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "object-inspect",
  3. "version": "1.10.3",
  4. "description": "string representations of objects in node and the browser",
  5. "main": "index.js",
  6. "devDependencies": {
  7. "@ljharb/eslint-config": "^17.6.0",
  8. "aud": "^1.1.5",
  9. "core-js": "^2.6.12",
  10. "eslint": "^7.26.0",
  11. "for-each": "^0.3.3",
  12. "functions-have-names": "^1.2.2",
  13. "make-arrow-function": "^1.2.0",
  14. "nyc": "^10.3.2",
  15. "safe-publish-latest": "^1.1.4",
  16. "string.prototype.repeat": "^1.0.0",
  17. "tape": "^5.2.2"
  18. },
  19. "scripts": {
  20. "prepublish": "not-in-publish || npm run prepublishOnly",
  21. "prepublishOnly": "safe-publish-latest",
  22. "pretest": "npm run lint",
  23. "lint": "eslint .",
  24. "test": "npm run tests-only && npm run test:corejs",
  25. "tests-only": "nyc tape 'test/*.js'",
  26. "test:corejs": "nyc tape test-core-js.js 'test/*.js'",
  27. "posttest": "npx aud --production"
  28. },
  29. "testling": {
  30. "files": [
  31. "test/*.js",
  32. "test/browser/*.js"
  33. ],
  34. "browsers": [
  35. "ie/6..latest",
  36. "chrome/latest",
  37. "firefox/latest",
  38. "safari/latest",
  39. "opera/latest",
  40. "iphone/latest",
  41. "ipad/latest",
  42. "android/latest"
  43. ]
  44. },
  45. "repository": {
  46. "type": "git",
  47. "url": "git://github.com/inspect-js/object-inspect.git"
  48. },
  49. "homepage": "https://github.com/inspect-js/object-inspect",
  50. "keywords": [
  51. "inspect",
  52. "util.inspect",
  53. "object",
  54. "stringify",
  55. "pretty"
  56. ],
  57. "author": {
  58. "name": "James Halliday",
  59. "email": "mail@substack.net",
  60. "url": "http://substack.net"
  61. },
  62. "funding": {
  63. "url": "https://github.com/sponsors/ljharb"
  64. },
  65. "license": "MIT",
  66. "browser": {
  67. "./util.inspect.js": false
  68. },
  69. "greenkeeper": {
  70. "ignore": [
  71. "nyc",
  72. "core-js"
  73. ]
  74. }
  75. }