package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "is-bigint",
  3. "version": "1.1.0",
  4. "description": "Is this value an ES BigInt?",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepack": "npmignore --auto --commentLines=autogenerated",
  8. "prepublishOnly": "safe-publish-latest",
  9. "prepublish": "not-in-publish || npm run prepublishOnly",
  10. "lint": "eslint .",
  11. "postlint": "tsc -p . && attw -P",
  12. "pretest": "npm run lint",
  13. "tests-only": "nyc tape 'test/**/*.js'",
  14. "test": "npm run tests-only",
  15. "posttest": "npx npm@'>=10.2' audit --production",
  16. "version": "auto-changelog && git add CHANGELOG.md",
  17. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/inspect-js/is-bigint.git"
  22. },
  23. "keywords": [
  24. "bigint",
  25. "es",
  26. "integer",
  27. "is"
  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-bigint/issues"
  36. },
  37. "homepage": "https://github.com/inspect-js/is-bigint#readme",
  38. "dependencies": {
  39. "has-bigints": "^1.0.2"
  40. },
  41. "devDependencies": {
  42. "@arethetypeswrong/cli": "^0.17.0",
  43. "@ljharb/eslint-config": "^21.1.1",
  44. "@ljharb/tsconfig": "^0.2.0",
  45. "@types/for-each": "^0.3.3",
  46. "@types/object-inspect": "^1.13.0",
  47. "@types/tape": "^5.6.5",
  48. "auto-changelog": "^2.5.0",
  49. "encoding": "^0.1.13",
  50. "es-value-fixtures": "^1.5.0",
  51. "eslint": "=8.8.0",
  52. "for-each": "^0.3.3",
  53. "has-tostringtag": "^1.0.2",
  54. "in-publish": "^2.0.1",
  55. "npmignore": "^0.3.1",
  56. "nyc": "^10.3.2",
  57. "object-inspect": "^1.13.3",
  58. "safe-publish-latest": "^2.0.0",
  59. "tape": "^5.9.0",
  60. "typescript": "next"
  61. },
  62. "auto-changelog": {
  63. "output": "CHANGELOG.md",
  64. "template": "keepachangelog",
  65. "unreleased": false,
  66. "commitLimit": false,
  67. "backfillLimit": false,
  68. "hideCredit": true
  69. },
  70. "publishConfig": {
  71. "ignore": [
  72. ".github/workflows"
  73. ]
  74. },
  75. "engines": {
  76. "node": ">= 0.4"
  77. }
  78. }