package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "is-map",
  3. "version": "2.0.2",
  4. "description": "Is this value a JS Map? 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 --ext=js,mjs .",
  12. "tests-only": "nyc tape 'test/**/*.js'",
  13. "tests:shims": "nyc tape --require=es5-shim --require=es5-shim 'test/**/*.js'",
  14. "tests:corejs": "nyc tape --require=core-js 'test/**/*.js'",
  15. "test": "npm run tests-only && npm run tests:shims && npm run tests:corejs",
  16. "posttest": "aud --production"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/inspect-js/is-map.git"
  21. },
  22. "keywords": [
  23. "map",
  24. "set",
  25. "collection",
  26. "is",
  27. "robust"
  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-map/issues"
  36. },
  37. "homepage": "https://github.com/inspect-js/is-map#readme",
  38. "devDependencies": {
  39. "@ljharb/eslint-config": "^17.3.0",
  40. "aud": "^1.1.3",
  41. "auto-changelog": "^2.2.1",
  42. "core-js": "^2.6.12",
  43. "es5-shim": "^4.5.14",
  44. "es6-shim": "^0.35.6",
  45. "eslint": "^7.15.0",
  46. "for-each": "^0.3.3",
  47. "nyc": "^10.3.2",
  48. "object-inspect": "^1.9.0",
  49. "safe-publish-latest": "^1.1.4",
  50. "tape": "^5.0.1"
  51. },
  52. "auto-changelog": {
  53. "output": "CHANGELOG.md",
  54. "template": "keepachangelog",
  55. "unreleased": false,
  56. "commitLimit": false,
  57. "backfillLimit": false,
  58. "hideCredit": true
  59. }
  60. }