package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "is-negative-zero",
  3. "version": "2.0.2",
  4. "description": "Is this value negative zero? === will lie to you",
  5. "author": "Jordan Harband <ljharb@gmail.com>",
  6. "funding": {
  7. "url": "https://github.com/sponsors/ljharb"
  8. },
  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. "test": "npm run tests-only",
  16. "tests-only": "nyc tape 'test/**/*.js'",
  17. "posttest": "aud --production",
  18. "lint": "eslint --ext=js,mjs .",
  19. "version": "auto-changelog && git add CHANGELOG.md",
  20. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git://github.com/inspect-js/is-negative-zero.git"
  25. },
  26. "bugs": {
  27. "url": "https://github.com/inspect-js/is-negative-zero/issues"
  28. },
  29. "homepage": "https://github.com/inspect-js/is-negative-zero",
  30. "keywords": [
  31. "is",
  32. "negative",
  33. "zero",
  34. "negative zero",
  35. "number",
  36. "positive",
  37. "0",
  38. "-0"
  39. ],
  40. "devDependencies": {
  41. "@ljharb/eslint-config": "^20.0.0",
  42. "aud": "^1.1.5",
  43. "auto-changelog": "^2.3.0",
  44. "eslint": "^8.4.1",
  45. "nyc": "^10.3.2",
  46. "safe-publish-latest": "^2.0.0",
  47. "tape": "^5.3.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..12.0",
  60. "opera/15.0..latest",
  61. "opera/next",
  62. "safari/4.0..latest",
  63. "ipad/6.0..latest",
  64. "iphone/6.0..latest",
  65. "android-browser/4.2"
  66. ]
  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. }