package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "is-set",
  3. "version": "2.0.3",
  4. "description": "Is this value a JS Set? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
  5. "main": "index.js",
  6. "sideEffects": false,
  7. "scripts": {
  8. "version": "auto-changelog && git add CHANGELOG.md",
  9. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
  10. "prepublishOnly": "safe-publish-latest",
  11. "prepublish": "not-in-publish || npm run prepublishOnly",
  12. "pretest": "npm run lint",
  13. "lint": "eslint --ext=.js,.mjs .",
  14. "postlint": "tsc -p . && attw -P",
  15. "tests-only": "nyc tape 'test/**/*.js'",
  16. "tests:shims": "nyc tape --require=es5-shim --require=es5-shim 'test/**/*.js'",
  17. "tests:corejs": "nyc tape --require=core-js 'test/**/*.js'",
  18. "test": "npm run tests-only && npm run tests:shims && npm run tests:corejs",
  19. "posttest": "npx aud --production"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/inspect-js/is-set.git"
  24. },
  25. "keywords": [
  26. "map",
  27. "set",
  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-set/issues"
  39. },
  40. "homepage": "https://github.com/inspect-js/is-set#readme",
  41. "devDependencies": {
  42. "@arethetypeswrong/cli": "^0.15.0",
  43. "@ljharb/eslint-config": "^21.1.0",
  44. "@types/for-each": "^0.3.3",
  45. "@types/object-inspect": "^1.8.4",
  46. "@types/tape": "^5.6.4",
  47. "aud": "^2.0.4",
  48. "auto-changelog": "^2.4.0",
  49. "core-js": "^2.6.12",
  50. "es5-shim": "^4.6.7",
  51. "es6-shim": "^0.35.8",
  52. "eslint": "=8.8.0",
  53. "for-each": "^0.3.3",
  54. "in-publish": "^2.0.1",
  55. "nyc": "^10.3.2",
  56. "object-inspect": "^1.13.1",
  57. "safe-publish-latest": "^2.0.0",
  58. "tape": "^5.7.5",
  59. "typescript": "next"
  60. },
  61. "auto-changelog": {
  62. "output": "CHANGELOG.md",
  63. "template": "keepachangelog",
  64. "unreleased": false,
  65. "commitLimit": false,
  66. "backfillLimit": false,
  67. "hideCredit": true
  68. },
  69. "engines": {
  70. "node": ">= 0.4"
  71. }
  72. }