package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "is-symbol",
  3. "version": "1.0.3",
  4. "description": "Determine if a value is an ES6 Symbol or not.",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepublish": "safe-publish-latest",
  8. "pretest": "npm run lint",
  9. "tests-only": "node --es-staging --harmony test",
  10. "test": "npm run tests-only",
  11. "posttest": "npx aud",
  12. "coverage": "covert test",
  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.1"
  37. },
  38. "devDependencies": {
  39. "@ljharb/eslint-config": "^15.0.2",
  40. "auto-changelog": "^1.16.2",
  41. "covert": "^1.1.1",
  42. "eslint": "^6.6.0",
  43. "object-inspect": "^1.7.0",
  44. "safe-publish-latest": "^1.1.4",
  45. "semver": "^6.3.0",
  46. "tape": "^4.11.0"
  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. },
  76. "__npminstall_done": "Thu Dec 24 2020 20:21:03 GMT+0800 (CST)",
  77. "_from": "is-symbol@1.0.3",
  78. "_resolved": "https://registry.npm.taobao.org/is-symbol/download/is-symbol-1.0.3.tgz"
  79. }