package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "is-number-object",
  3. "version": "1.0.5",
  4. "author": "Jordan Harband <ljharb@gmail.com>",
  5. "funding": {
  6. "url": "https://github.com/sponsors/ljharb"
  7. },
  8. "description": "Is this value a JS Number object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
  9. "license": "MIT",
  10. "main": "index.js",
  11. "scripts": {
  12. "prepublishOnly": "safe-publish-latest",
  13. "prepublish": "not-in-publish || npm run prepublishOnly",
  14. "pretest": "npm run lint",
  15. "tests-only": "nyc tape 'test/**/*.js'",
  16. "test": "npm run tests-only",
  17. "posttest": "npx aud --production",
  18. "lint": "eslint .",
  19. "eccheck": "eclint check *.js **/*.js > /dev/null",
  20. "version": "auto-changelog && git add CHANGELOG.md",
  21. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git://github.com/inspect-js/is-number-object.git"
  26. },
  27. "keywords": [
  28. "Number",
  29. "ES6",
  30. "toStringTag",
  31. "@@toStringTag",
  32. "Number object"
  33. ],
  34. "devDependencies": {
  35. "@ljharb/eslint-config": "^17.6.0",
  36. "aud": "^1.1.5",
  37. "auto-changelog": "^2.2.1",
  38. "core-js": "^3.12.0",
  39. "eclint": "^2.8.1",
  40. "eslint": "^7.25.0",
  41. "foreach": "^2.0.5",
  42. "has-symbols": "^1.0.2",
  43. "indexof": "^0.0.1",
  44. "is": "^3.3.0",
  45. "nyc": "^10.3.2",
  46. "safe-publish-latest": "^1.1.4",
  47. "tape": "^5.2.2"
  48. },
  49. "testling": {
  50. "files": "test/index.js",
  51. "browsers": [
  52. "iexplore/6.0..latest",
  53. "firefox/3.0..6.0",
  54. "firefox/15.0..latest",
  55. "firefox/nightly",
  56. "chrome/4.0..10.0",
  57. "chrome/20.0..latest",
  58. "chrome/canary",
  59. "opera/10.0..latest",
  60. "opera/next",
  61. "safari/4.0..latest",
  62. "ipad/6.0..latest",
  63. "iphone/6.0..latest",
  64. "android-browser/4.2"
  65. ]
  66. },
  67. "engines": {
  68. "node": ">= 0.4"
  69. },
  70. "auto-changelog": {
  71. "output": "CHANGELOG.md",
  72. "template": "keepachangelog",
  73. "unreleased": false,
  74. "commitLimit": false,
  75. "backfillLimit": false,
  76. "hideCredit": true
  77. }
  78. }