package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "es-set-tostringtag",
  3. "version": "2.0.2",
  4. "description": "A helper to optimistically set Symbol.toStringTag, when possible.",
  5. "main": "index.js",
  6. "exports": {
  7. ".": "./index.js",
  8. "./package.json": "./package.json"
  9. },
  10. "sideEffects": false,
  11. "scripts": {
  12. "prepack": "npmignore --auto --commentLines=autogenerated",
  13. "prepublishOnly": "safe-publish-latest",
  14. "prepublish": "not-in-publish || npm run prepublishOnly",
  15. "prelint": "evalmd README.md",
  16. "lint": "eslint --ext=js,mjs .",
  17. "pretest": "npm run lint",
  18. "tests-only": "tape 'test/**/*.js'",
  19. "test": "npm run tests-only",
  20. "posttest": "aud --production",
  21. "version": "auto-changelog && git add CHANGELOG.md",
  22. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/es-shims/es-set-tostringtag.git"
  27. },
  28. "author": "Jordan Harband <ljharb@gmail.com>",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/es-shims/es-set-tostringtag/issues"
  32. },
  33. "homepage": "https://github.com/es-shims/es-set-tostringtag#readme",
  34. "devDependencies": {
  35. "@ljharb/eslint-config": "^21.1.0",
  36. "aud": "^2.0.3",
  37. "auto-changelog": "^2.4.0",
  38. "eslint": "=8.8.0",
  39. "evalmd": "^0.0.19",
  40. "in-publish": "^2.0.1",
  41. "npmignore": "^0.3.0",
  42. "safe-publish-latest": "^2.0.0",
  43. "tape": "^5.7.2"
  44. },
  45. "dependencies": {
  46. "get-intrinsic": "^1.2.2",
  47. "has-tostringtag": "^1.0.0",
  48. "hasown": "^2.0.0"
  49. },
  50. "engines": {
  51. "node": ">= 0.4"
  52. },
  53. "auto-changelog": {
  54. "output": "CHANGELOG.md",
  55. "template": "keepachangelog",
  56. "unreleased": false,
  57. "commitLimit": false,
  58. "backfillLimit": false,
  59. "hideCredit": true
  60. },
  61. "testling": {
  62. "files": "./test/index.js"
  63. },
  64. "publishConfig": {
  65. "ignore": [
  66. ".github/workflows"
  67. ]
  68. }
  69. }