package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "name": "object-inspect",
  3. "version": "1.12.1",
  4. "description": "string representations of objects in node and the browser",
  5. "main": "index.js",
  6. "sideEffects": false,
  7. "devDependencies": {
  8. "@ljharb/eslint-config": "^21.0.0",
  9. "aud": "^2.0.0",
  10. "auto-changelog": "^2.4.0",
  11. "core-js": "^2.6.12",
  12. "error-cause": "^1.0.4",
  13. "es-value-fixtures": "^1.4.1",
  14. "eslint": "=8.8.0",
  15. "for-each": "^0.3.3",
  16. "functions-have-names": "^1.2.3",
  17. "has-tostringtag": "^1.0.0",
  18. "make-arrow-function": "^1.2.0",
  19. "mock-property": "^1.0.0",
  20. "npmignore": "^0.3.0",
  21. "nyc": "^10.3.2",
  22. "safe-publish-latest": "^2.0.0",
  23. "string.prototype.repeat": "^1.0.0",
  24. "tape": "^5.5.3"
  25. },
  26. "scripts": {
  27. "prepack": "npmignore --auto --commentLines=autogenerated",
  28. "prepublish": "not-in-publish || npm run prepublishOnly",
  29. "prepublishOnly": "safe-publish-latest",
  30. "pretest": "npm run lint",
  31. "lint": "eslint .",
  32. "test": "npm run tests-only && npm run test:corejs",
  33. "tests-only": "nyc tape 'test/*.js'",
  34. "test:corejs": "nyc tape test-core-js.js 'test/*.js'",
  35. "posttest": "npx aud --production",
  36. "version": "auto-changelog && git add CHANGELOG.md",
  37. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  38. },
  39. "testling": {
  40. "files": [
  41. "test/*.js",
  42. "test/browser/*.js"
  43. ],
  44. "browsers": [
  45. "ie/6..latest",
  46. "chrome/latest",
  47. "firefox/latest",
  48. "safari/latest",
  49. "opera/latest",
  50. "iphone/latest",
  51. "ipad/latest",
  52. "android/latest"
  53. ]
  54. },
  55. "repository": {
  56. "type": "git",
  57. "url": "git://github.com/inspect-js/object-inspect.git"
  58. },
  59. "homepage": "https://github.com/inspect-js/object-inspect",
  60. "keywords": [
  61. "inspect",
  62. "util.inspect",
  63. "object",
  64. "stringify",
  65. "pretty"
  66. ],
  67. "author": {
  68. "name": "James Halliday",
  69. "email": "mail@substack.net",
  70. "url": "http://substack.net"
  71. },
  72. "funding": {
  73. "url": "https://github.com/sponsors/ljharb"
  74. },
  75. "license": "MIT",
  76. "browser": {
  77. "./util.inspect.js": false
  78. },
  79. "auto-changelog": {
  80. "output": "CHANGELOG.md",
  81. "template": "keepachangelog",
  82. "unreleased": false,
  83. "commitLimit": false,
  84. "backfillLimit": false,
  85. "hideCredit": true
  86. },
  87. "publishConfig": {
  88. "ignore": [
  89. ".github/workflows",
  90. "./test-core-js.js"
  91. ]
  92. },
  93. "__npminstall_done": true,
  94. "_from": "object-inspect@1.12.1",
  95. "_resolved": "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.1.tgz"
  96. }