package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "get-symbol-description",
  3. "version": "1.0.2",
  4. "description": "Gets the description of a Symbol. Handles `Symbol()` vs `Symbol('')` properly when possible.",
  5. "main": "index.js",
  6. "exports": {
  7. ".": "./index.js",
  8. "./getInferredName": "./getInferredName.js",
  9. "./package.json": "./package.json"
  10. },
  11. "scripts": {
  12. "prepack": "npmignore --auto --commentLines=autogenerated",
  13. "prepublish": "not-in-publish || npm run prepublishOnly",
  14. "prepublishOnly": "safe-publish-latest",
  15. "lint": "eslint --ext=.js,.mjs .",
  16. "postlint": "evalmd README.md",
  17. "pretest": "npm run lint",
  18. "tests-only": "nyc 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/inspect-js/get-symbol-description.git"
  27. },
  28. "keywords": [
  29. "symbol",
  30. "ecmascript",
  31. "javascript",
  32. "description"
  33. ],
  34. "author": "Jordan Harband <ljharb@gmail.com>",
  35. "funding": {
  36. "url": "https://github.com/sponsors/ljharb"
  37. },
  38. "license": "MIT",
  39. "bugs": {
  40. "url": "https://github.com/inspect-js/get-symbol-description/issues"
  41. },
  42. "homepage": "https://github.com/inspect-js/get-symbol-description#readme",
  43. "dependencies": {
  44. "call-bind": "^1.0.5",
  45. "es-errors": "^1.3.0",
  46. "get-intrinsic": "^1.2.4"
  47. },
  48. "devDependencies": {
  49. "@ljharb/eslint-config": "^21.1.0",
  50. "aud": "^2.0.4",
  51. "auto-changelog": "^2.4.0",
  52. "es-value-fixtures": "^1.4.2",
  53. "eslint": "=8.8.0",
  54. "evalmd": "^0.0.19",
  55. "for-each": "^0.3.3",
  56. "hasown": "^2.0.0",
  57. "in-publish": "^2.0.1",
  58. "npmignore": "^0.3.1",
  59. "nyc": "^10.3.2",
  60. "object-inspect": "^1.13.1",
  61. "safe-publish-latest": "^2.0.0",
  62. "tape": "^5.7.4"
  63. },
  64. "engines": {
  65. "node": ">= 0.4"
  66. },
  67. "auto-changelog": {
  68. "output": "CHANGELOG.md",
  69. "template": "keepachangelog",
  70. "unreleased": false,
  71. "commitLimit": false,
  72. "backfillLimit": false,
  73. "hideCredit": true
  74. },
  75. "publishConfig": {
  76. "ignore": [
  77. ".github/workflows"
  78. ]
  79. }
  80. }