package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "is-bigint",
  3. "version": "1.0.2",
  4. "description": "Is this value an ES BigInt?",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepublishOnly": "safe-publish-latest",
  8. "prepublish": "not-in-publish || npm run prepublishOnly",
  9. "lint": "eslint .",
  10. "pretest": "npm run lint",
  11. "tests-only": "nyc tape 'test/**/*.js'",
  12. "test": "npm run tests-only",
  13. "posttest": "aud --production",
  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+https://github.com/inspect-js/is-bigint.git"
  20. },
  21. "keywords": [
  22. "bigint",
  23. "es",
  24. "integer",
  25. "is"
  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-bigint/issues"
  34. },
  35. "homepage": "https://github.com/inspect-js/is-bigint#readme",
  36. "devDependencies": {
  37. "@ljharb/eslint-config": "^17.6.0",
  38. "aud": "^1.1.5",
  39. "auto-changelog": "^2.2.1",
  40. "eslint": "^7.25.0",
  41. "has-symbols": "^1.0.2",
  42. "nyc": "^10.3.2",
  43. "object-inspect": "^1.10.2",
  44. "safe-publish-latest": "^1.1.4",
  45. "tape": "^5.2.2"
  46. },
  47. "auto-changelog": {
  48. "output": "CHANGELOG.md",
  49. "template": "keepachangelog",
  50. "unreleased": false,
  51. "commitLimit": false,
  52. "backfillLimit": false,
  53. "hideCredit": true
  54. }
  55. }