package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "has-bigints",
  3. "version": "1.0.1",
  4. "description": "Determine if the JS environment has BigInt support.",
  5. "main": "index.js",
  6. "scripts": {
  7. "version": "auto-changelog && git add CHANGELOG.md",
  8. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
  9. "prepublish": "not-in-publish || safe-publish-latest",
  10. "lint": "eslint --ext=js,mjs .",
  11. "pretest": "npm run lint",
  12. "tests-only": "nyc tape 'test/**/*.js'",
  13. "test": "npm run tests-only",
  14. "posttest": "aud --production"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/ljharb/has-bigints.git"
  19. },
  20. "keywords": [
  21. "BigInt",
  22. "bigints",
  23. "typeof",
  24. "ES2020"
  25. ],
  26. "author": "Jordan Harband <ljharb@gmail.com>",
  27. "funding": {
  28. "url": "https://github.com/sponsors/ljharb"
  29. },
  30. "license": "MIT",
  31. "bugs": {
  32. "url": "https://github.com/ljharb/has-bigints/issues"
  33. },
  34. "homepage": "https://github.com/ljharb/has-bigints#readme",
  35. "devDependencies": {
  36. "@ljharb/eslint-config": "^17.3.0",
  37. "aud": "^1.1.3",
  38. "auto-changelog": "^2.2.1",
  39. "eslint": "^7.15.0",
  40. "in-publish": "^2.0.1",
  41. "nyc": "^10.3.2",
  42. "safe-publish-latest": "^1.1.4",
  43. "tape": "^5.0.1"
  44. },
  45. "auto-changelog": {
  46. "output": "CHANGELOG.md",
  47. "template": "keepachangelog",
  48. "unreleased": false,
  49. "commitLimit": false,
  50. "backfillLimit": false,
  51. "hideCredit": true
  52. }
  53. }