package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "is-weakmap",
  3. "version": "2.0.1",
  4. "description": "Is this value a JS WeakMap? 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. "prepublish": "safe-publish-latest",
  10. "pretest": "npm run lint",
  11. "lint": "eslint .",
  12. "tests-only": "node test",
  13. "posttests-only": "node -e \"require('es5-shim'); require('es6-shim'); require('./test');\"",
  14. "test": "npm run tests-only",
  15. "posttest": "npx aud"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/inspect-js/is-weakmap.git"
  20. },
  21. "keywords": [
  22. "map",
  23. "weakmap",
  24. "set",
  25. "weakset",
  26. "collection",
  27. "is",
  28. "robust"
  29. ],
  30. "author": "Jordan Harband <ljharb@gmail.com>",
  31. "funding": {
  32. "url": "https://github.com/sponsors/ljharb"
  33. },
  34. "license": "MIT",
  35. "bugs": {
  36. "url": "https://github.com/inspect-js/is-weakmap/issues"
  37. },
  38. "homepage": "https://github.com/inspect-js/is-weakmap#readme",
  39. "devDependencies": {
  40. "@ljharb/eslint-config": "^15.0.2",
  41. "auto-changelog": "^1.16.2",
  42. "es5-shim": "^4.5.13",
  43. "es6-shim": "^0.35.5",
  44. "eslint": "^6.7.2",
  45. "for-each": "^0.3.3",
  46. "object-inspect": "^1.7.0",
  47. "safe-publish-latest": "^1.1.4",
  48. "tape": "^4.12.0"
  49. },
  50. "auto-changelog": {
  51. "output": "CHANGELOG.md",
  52. "template": "keepachangelog",
  53. "unreleased": false,
  54. "commitLimit": false,
  55. "backfillLimit": false
  56. }
  57. }