package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "is-symbol",
  3. "version": "1.0.4",
  4. "description": "Determine if a value is an ES6 Symbol or not.",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepublishOnly": "safe-publish-latest",
  8. "prepublish": "not-in-publish || npm run prepublishOnly",
  9. "pretest": "npm run lint",
  10. "tests-only": "nyc tape 'test/**/*.js'",
  11. "test": "npm run tests-only",
  12. "posttest": "npx aud --production",
  13. "lint": "eslint .",
  14. "version": "auto-changelog && git add CHANGELOG.md",
  15. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git://github.com/inspect-js/is-symbol.git"
  20. },
  21. "keywords": [
  22. "symbol",
  23. "es6",
  24. "is",
  25. "Symbol"
  26. ],
  27. "author": "Jordan Harband <ljharb@gmail.com>",
  28. "funding": {
  29. "url": "https://github.com/sponsors/ljharb"
  30. },
  31. "license": "MIT",
  32. "bugs": {
  33. "url": "https://github.com/inspect-js/is-symbol/issues"
  34. },
  35. "dependencies": {
  36. "has-symbols": "^1.0.2"
  37. },
  38. "devDependencies": {
  39. "@ljharb/eslint-config": "^17.6.0",
  40. "aud": "^1.1.5",
  41. "auto-changelog": "^2.2.1",
  42. "eslint": "^7.26.0",
  43. "nyc": "^10.3.2",
  44. "object-inspect": "^1.10.3",
  45. "safe-publish-latest": "^1.1.4",
  46. "tape": "^5.2.2"
  47. },
  48. "testling": {
  49. "files": "test/index.js",
  50. "browsers": [
  51. "iexplore/6.0..latest",
  52. "firefox/3.0..6.0",
  53. "firefox/15.0..latest",
  54. "firefox/nightly",
  55. "chrome/4.0..10.0",
  56. "chrome/20.0..latest",
  57. "chrome/canary",
  58. "opera/10.0..latest",
  59. "opera/next",
  60. "safari/4.0..latest",
  61. "ipad/6.0..latest",
  62. "iphone/6.0..latest",
  63. "android-browser/4.2"
  64. ]
  65. },
  66. "engines": {
  67. "node": ">= 0.4"
  68. },
  69. "auto-changelog": {
  70. "output": "CHANGELOG.md",
  71. "template": "keepachangelog",
  72. "unreleased": false,
  73. "commitLimit": false,
  74. "backfillLimit": false,
  75. "hideCredit": true
  76. }
  77. }