package.json 2.6 KB

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