package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "has-bigints",
  3. "version": "1.1.0",
  4. "description": "Determine if the JS environment has BigInt support.",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepack": "npmignore --auto --commentLines=autogenerated",
  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. "lint": "eslint --ext=js,mjs .",
  13. "postlint": "tsc && attw -P",
  14. "pretest": "npm run lint",
  15. "tests-only": "nyc tape 'test/**/*.js'",
  16. "test": "npm run tests-only",
  17. "posttest": "npx npm@'>= 10.2' audit --production"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/ljharb/has-bigints.git"
  22. },
  23. "keywords": [
  24. "BigInt",
  25. "bigints",
  26. "typeof",
  27. "ES2020"
  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/ljharb/has-bigints/issues"
  36. },
  37. "homepage": "https://github.com/ljharb/has-bigints#readme",
  38. "devDependencies": {
  39. "@arethetypeswrong/cli": "^0.17.1",
  40. "@ljharb/eslint-config": "^21.1.1",
  41. "@ljharb/tsconfig": "^0.2.2",
  42. "@types/tape": "^5.8.0",
  43. "auto-changelog": "^2.5.0",
  44. "encoding": "^0.1.13",
  45. "eslint": "=8.8.0",
  46. "in-publish": "^2.0.1",
  47. "npmignore": "^0.3.1",
  48. "nyc": "^10.3.2",
  49. "safe-publish-latest": "^2.0.0",
  50. "tape": "^5.9.0",
  51. "typescript": "next"
  52. },
  53. "auto-changelog": {
  54. "output": "CHANGELOG.md",
  55. "template": "keepachangelog",
  56. "unreleased": false,
  57. "commitLimit": false,
  58. "backfillLimit": false,
  59. "hideCredit": true
  60. },
  61. "publishConfig": {
  62. "ignore": [
  63. ".github/workflows"
  64. ]
  65. },
  66. "engines": {
  67. "node": ">= 0.4"
  68. }
  69. }