package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "is-number-object",
  3. "version": "1.0.7",
  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. "main": "index.js",
  10. "scripts": {
  11. "prepublishOnly": "safe-publish-latest",
  12. "prepublish": "not-in-publish || npm run prepublishOnly",
  13. "pretest": "npm run lint",
  14. "tests-only": "nyc tape 'test/**/*.js'",
  15. "test:corejs": "nyc tape test-corejs.js",
  16. "test": "npm run tests-only && npm run test:corejs",
  17. "posttest": "aud --production",
  18. "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",
  19. "lint": "eslint --ext=js,mjs .",
  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. "license": "MIT",
  35. "bugs": {
  36. "url": "https://github.com/inspect-js/is-number-object/issues"
  37. },
  38. "homepage": "https://github.com/inspect-js/is-number-object#readme",
  39. "devDependencies": {
  40. "@ljharb/eslint-config": "^20.2.3",
  41. "aud": "^2.0.0",
  42. "auto-changelog": "^2.4.0",
  43. "core-js": "^3.21.1",
  44. "eclint": "^2.8.1",
  45. "eslint": "=8.8.0",
  46. "foreach": "^2.0.5",
  47. "indexof": "^0.0.1",
  48. "is": "^3.3.0",
  49. "nyc": "^10.3.2",
  50. "safe-publish-latest": "^2.0.0",
  51. "tape": "^5.5.2"
  52. },
  53. "testling": {
  54. "files": "test/index.js",
  55. "browsers": [
  56. "iexplore/6.0..latest",
  57. "firefox/3.0..6.0",
  58. "firefox/15.0..latest",
  59. "firefox/nightly",
  60. "chrome/4.0..10.0",
  61. "chrome/20.0..latest",
  62. "chrome/canary",
  63. "opera/10.0..latest",
  64. "opera/next",
  65. "safari/4.0..latest",
  66. "ipad/6.0..latest",
  67. "iphone/6.0..latest",
  68. "android-browser/4.2"
  69. ]
  70. },
  71. "engines": {
  72. "node": ">= 0.4"
  73. },
  74. "auto-changelog": {
  75. "output": "CHANGELOG.md",
  76. "template": "keepachangelog",
  77. "unreleased": false,
  78. "commitLimit": false,
  79. "backfillLimit": false,
  80. "hideCredit": true
  81. },
  82. "dependencies": {
  83. "has-tostringtag": "^1.0.0"
  84. }
  85. }