package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "is-weakset",
  3. "version": "2.0.2",
  4. "description": "Is this value a JS WeakSet? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
  5. "main": "index.js",
  6. "scripts": {
  7. "version": "auto-changelog && git add CHANGELOG.md",
  8. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
  9. "prepublishOnly": "safe-publish-latest",
  10. "prepublish": "not-in-publish || npm run prepublishOnly",
  11. "pretest": "npm run lint",
  12. "lint": "eslint --ext=js,mjs .",
  13. "tests-only": "nyc tape 'test/**/*.js'",
  14. "tests:shims": "nyc tape --require=es5-shim --require=es6-shim 'test/**/*.js'",
  15. "tests:corejs": "nyc tape --require=core-js 'test/**/*.js'",
  16. "test": "npm run tests-only && npm run tests:shims && npm run tests:corejs",
  17. "posttest": "aud --production"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/inspect-js/is-weakset.git"
  22. },
  23. "keywords": [
  24. "map",
  25. "weakmap",
  26. "set",
  27. "weakset",
  28. "collection",
  29. "is",
  30. "robust"
  31. ],
  32. "author": "Jordan Harband <ljharb@gmail.com>",
  33. "funding": {
  34. "url": "https://github.com/sponsors/ljharb"
  35. },
  36. "license": "MIT",
  37. "bugs": {
  38. "url": "https://github.com/inspect-js/is-weakset/issues"
  39. },
  40. "homepage": "https://github.com/inspect-js/is-weakset#readme",
  41. "devDependencies": {
  42. "@ljharb/eslint-config": "^20.0.0",
  43. "aud": "^1.1.5",
  44. "auto-changelog": "^2.3.0",
  45. "core-js": "^2.6.12",
  46. "es5-shim": "^4.6.2",
  47. "es6-shim": "^0.35.6",
  48. "eslint": "^8.4.1",
  49. "for-each": "^0.3.3",
  50. "nyc": "^10.3.2",
  51. "object-inspect": "^1.11.1",
  52. "safe-publish-latest": "^2.0.0",
  53. "tape": "^5.3.2"
  54. },
  55. "auto-changelog": {
  56. "output": "CHANGELOG.md",
  57. "template": "keepachangelog",
  58. "unreleased": false,
  59. "commitLimit": false,
  60. "backfillLimit": false,
  61. "hideCredit": true
  62. },
  63. "dependencies": {
  64. "call-bind": "^1.0.2",
  65. "get-intrinsic": "^1.1.1"
  66. }
  67. }