package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "is-bigint",
  3. "version": "1.0.4",
  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. "dependencies": {
  37. "has-bigints": "^1.0.1"
  38. },
  39. "devDependencies": {
  40. "@ljharb/eslint-config": "^17.6.0",
  41. "aud": "^1.1.5",
  42. "auto-changelog": "^2.3.0",
  43. "eslint": "^7.32.0",
  44. "has-symbols": "^1.0.2",
  45. "nyc": "^10.3.2",
  46. "object-inspect": "^1.11.0",
  47. "safe-publish-latest": "^1.1.4",
  48. "tape": "^5.3.1"
  49. },
  50. "auto-changelog": {
  51. "output": "CHANGELOG.md",
  52. "template": "keepachangelog",
  53. "unreleased": false,
  54. "commitLimit": false,
  55. "backfillLimit": false,
  56. "hideCredit": true
  57. }
  58. }