web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.4 KiB

  1. {
  2. "name": "is-bigint",
  3. "version": "1.0.1",
  4. "description": "Is this value an ES BigInt?",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepublish": "safe-publish-latest",
  8. "lint": "eslint .",
  9. "pretest": "npm run lint",
  10. "tests-only": "nyc tape 'test/**/*.js'",
  11. "test": "npm run tests-only",
  12. "posttest": "aud --production",
  13. "version": "auto-changelog && git add CHANGELOG.md",
  14. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/ljharb/is-bigint.git"
  19. },
  20. "keywords": [
  21. "bigint",
  22. "es",
  23. "integer",
  24. "is"
  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/is-bigint/issues"
  33. },
  34. "homepage": "https://github.com/ljharb/is-bigint#readme",
  35. "devDependencies": {
  36. "@ljharb/eslint-config": "^17.3.0",
  37. "aud": "^1.1.3",
  38. "auto-changelog": "^2.2.1",
  39. "eslint": "^7.14.0",
  40. "has-symbols": "^1.0.1",
  41. "nyc": "^10.3.2",
  42. "object-inspect": "^1.8.0",
  43. "safe-publish-latest": "^1.1.4",
  44. "tape": "^5.0.1"
  45. },
  46. "dependencies": {},
  47. "auto-changelog": {
  48. "output": "CHANGELOG.md",
  49. "template": "keepachangelog",
  50. "unreleased": false,
  51. "commitLimit": false,
  52. "backfillLimit": false,
  53. "hideCredit": true
  54. }
  55. }