package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "get-symbol-description",
  3. "version": "1.0.0",
  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. "prepublish": "not-in-publish || npm run prepublishOnly",
  13. "prepublishOnly": "safe-publish-latest",
  14. "lint": "eslint --ext=.js,.mjs .",
  15. "postlint": "evalmd README.md",
  16. "pretest": "npm run lint",
  17. "tests-only": "nyc tape 'test/**/*.js'",
  18. "test": "npm run tests-only",
  19. "posttest": "aud --production",
  20. "version": "auto-changelog && git add CHANGELOG.md",
  21. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/inspect-js/get-symbol-description.git"
  26. },
  27. "keywords": [
  28. "symbol",
  29. "ecmascript",
  30. "javascript",
  31. "description"
  32. ],
  33. "author": "Jordan Harband <ljharb@gmail.com>",
  34. "funding": {
  35. "url": "https://github.com/sponsors/ljharb"
  36. },
  37. "license": "MIT",
  38. "bugs": {
  39. "url": "https://github.com/inspect-js/get-symbol-description/issues"
  40. },
  41. "homepage": "https://github.com/inspect-js/get-symbol-description#readme",
  42. "dependencies": {
  43. "call-bind": "^1.0.2",
  44. "get-intrinsic": "^1.1.1"
  45. },
  46. "devDependencies": {
  47. "@ljharb/eslint-config": "^17.6.0",
  48. "aud": "^1.1.5",
  49. "auto-changelog": "^2.3.0",
  50. "es-value-fixtures": "^1.2.1",
  51. "eslint": "^7.32.0",
  52. "evalmd": "^0.0.19",
  53. "foreach": "^2.0.5",
  54. "has": "^1.0.3",
  55. "nyc": "^10.3.2",
  56. "object-inspect": "^1.11.0",
  57. "safe-publish-latest": "^1.1.4",
  58. "tape": "^5.3.1"
  59. },
  60. "engines": {
  61. "node": ">= 0.4"
  62. },
  63. "auto-changelog": {
  64. "output": "CHANGELOG.md",
  65. "template": "keepachangelog",
  66. "unreleased": false,
  67. "commitLimit": false,
  68. "backfillLimit": false,
  69. "hideCredit": true
  70. }
  71. }