package.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "is-number-object",
  3. "version": "1.1.1",
  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. "prepack": "npmignore --auto --commentLines=autogenerated",
  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:corejs": "nyc tape test-corejs.js",
  17. "test": "npm run tests-only && npm run test:corejs",
  18. "posttest": "npx npm@'>=10.2' audit --production",
  19. "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",
  20. "lint": "eslint --ext=js,mjs .",
  21. "postlint": "tsc -p . && attw -P",
  22. "version": "auto-changelog && git add CHANGELOG.md",
  23. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "git://github.com/inspect-js/is-number-object.git"
  28. },
  29. "keywords": [
  30. "Number",
  31. "ES6",
  32. "toStringTag",
  33. "@@toStringTag",
  34. "Number object"
  35. ],
  36. "license": "MIT",
  37. "bugs": {
  38. "url": "https://github.com/inspect-js/is-number-object/issues"
  39. },
  40. "homepage": "https://github.com/inspect-js/is-number-object#readme",
  41. "dependencies": {
  42. "call-bound": "^1.0.3",
  43. "has-tostringtag": "^1.0.2"
  44. },
  45. "devDependencies": {
  46. "@arethetypeswrong/cli": "^0.17.1",
  47. "@ljharb/eslint-config": "^21.1.1",
  48. "@ljharb/tsconfig": "^0.2.2",
  49. "@types/core-js": "^2.5.8",
  50. "@types/tape": "^5.7.0",
  51. "auto-changelog": "^2.5.0",
  52. "core-js": "^3.39.0",
  53. "eclint": "^2.8.1",
  54. "encoding": "^0.1.13",
  55. "eslint": "=8.8.0",
  56. "in-publish": "^2.0.1",
  57. "indexof": "^0.0.1",
  58. "is": "^3.3.0",
  59. "npmignore": "^0.3.1",
  60. "nyc": "^10.3.2",
  61. "safe-publish-latest": "^2.0.0",
  62. "tape": "^5.9.0",
  63. "typescript": "next"
  64. },
  65. "testling": {
  66. "files": "test/index.js"
  67. },
  68. "engines": {
  69. "node": ">= 0.4"
  70. },
  71. "auto-changelog": {
  72. "output": "CHANGELOG.md",
  73. "template": "keepachangelog",
  74. "unreleased": false,
  75. "commitLimit": false,
  76. "backfillLimit": false,
  77. "hideCredit": true
  78. },
  79. "publishConfig": {
  80. "ignore": [
  81. ".github/workflows",
  82. "test-corejs.js"
  83. ]
  84. }
  85. }