package.json 2.2 KB

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