package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "name": "is-symbol",
  3. "version": "1.1.1",
  4. "description": "Determine if a value is an ES6 Symbol or not.",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepack": "npmignore --auto --commentLines=autogenerated",
  8. "prepublishOnly": "safe-publish-latest",
  9. "prepublish": "not-in-publish || npm run prepublishOnly",
  10. "pretest": "npm run lint",
  11. "tests-only": "nyc tape 'test/**/*.js'",
  12. "test": "npm run tests-only",
  13. "posttest": "npx npm@'>=10.2' audit --production",
  14. "lint": "eslint --ext=js,mjs .",
  15. "postlint": "tsc -p . && attw -P",
  16. "version": "auto-changelog && git add CHANGELOG.md",
  17. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/inspect-js/is-symbol.git"
  22. },
  23. "keywords": [
  24. "symbol",
  25. "es6",
  26. "is",
  27. "Symbol"
  28. ],
  29. "author": "Jordan Harband <ljharb@gmail.com>",
  30. "funding": {
  31. "url": "https://github.com/sponsors/ljharb"
  32. },
  33. "license": "MIT",
  34. "bugs": {
  35. "url": "https://github.com/inspect-js/is-symbol/issues"
  36. },
  37. "dependencies": {
  38. "call-bound": "^1.0.2",
  39. "has-symbols": "^1.1.0",
  40. "safe-regex-test": "^1.1.0"
  41. },
  42. "devDependencies": {
  43. "@arethetypeswrong/cli": "^0.17.1",
  44. "@ljharb/eslint-config": "^21.1.1",
  45. "@ljharb/tsconfig": "^0.2.2",
  46. "@types/for-each": "^0.3.3",
  47. "@types/object-inspect": "^1.13.0",
  48. "@types/tape": "^5.6.5",
  49. "auto-changelog": "^2.5.0",
  50. "encoding": "^0.1.13",
  51. "es-value-fixtures": "^1.5.0",
  52. "eslint": "=8.8.0",
  53. "for-each": "^0.3.3",
  54. "has-tostringtag": "^1.0.2",
  55. "in-publish": "^2.0.1",
  56. "npmignore": "^0.3.1",
  57. "nyc": "^10.3.2",
  58. "object-inspect": "^1.13.3",
  59. "safe-publish-latest": "^2.0.0",
  60. "tape": "^5.9.0",
  61. "typescript": "next"
  62. },
  63. "testling": {
  64. "files": "test/index.js",
  65. "browsers": [
  66. "iexplore/6.0..latest",
  67. "firefox/3.0..6.0",
  68. "firefox/15.0..latest",
  69. "firefox/nightly",
  70. "chrome/4.0..10.0",
  71. "chrome/20.0..latest",
  72. "chrome/canary",
  73. "opera/10.0..latest",
  74. "opera/next",
  75. "safari/4.0..latest",
  76. "ipad/6.0..latest",
  77. "iphone/6.0..latest",
  78. "android-browser/4.2"
  79. ]
  80. },
  81. "engines": {
  82. "node": ">= 0.4"
  83. },
  84. "auto-changelog": {
  85. "output": "CHANGELOG.md",
  86. "template": "keepachangelog",
  87. "unreleased": false,
  88. "commitLimit": false,
  89. "backfillLimit": false,
  90. "hideCredit": true
  91. },
  92. "publishConfig": {
  93. "ignore": [
  94. ".github/workflows",
  95. ".nvmrc"
  96. ]
  97. }
  98. }