package.json 2.2 KB

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