package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "is-negative-zero",
  3. "version": "2.0.3",
  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. "types": "./index.d.ts",
  12. "sideEffects": false,
  13. "scripts": {
  14. "prepack": "npmignore --auto --commentLines=autogenerated",
  15. "prepublishOnly": "safe-publish-latest",
  16. "prepublish": "not-in-publish || npm run prepublishOnly",
  17. "pretest": "npm run lint",
  18. "test": "npm run tests-only",
  19. "tests-only": "nyc tape 'test/**/*.js'",
  20. "posttest": "aud --production",
  21. "lint": "eslint --ext=js,mjs .",
  22. "postlint": "tsc -p .",
  23. "version": "auto-changelog && git add CHANGELOG.md",
  24. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git://github.com/inspect-js/is-negative-zero.git"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/inspect-js/is-negative-zero/issues"
  32. },
  33. "homepage": "https://github.com/inspect-js/is-negative-zero",
  34. "keywords": [
  35. "is",
  36. "negative",
  37. "zero",
  38. "negative zero",
  39. "number",
  40. "positive",
  41. "0",
  42. "-0"
  43. ],
  44. "devDependencies": {
  45. "@ljharb/eslint-config": "^21.1.0",
  46. "@types/tape": "^5.6.4",
  47. "aud": "^2.0.4",
  48. "auto-changelog": "^2.4.0",
  49. "eslint": "=8.8.0",
  50. "in-publish": "^2.0.1",
  51. "npmignore": "^0.3.1",
  52. "nyc": "^10.3.2",
  53. "safe-publish-latest": "^2.0.0",
  54. "tape": "^5.7.5",
  55. "typescript": "next"
  56. },
  57. "testling": {
  58. "files": "test/index.js",
  59. "browsers": [
  60. "iexplore/6.0..latest",
  61. "firefox/3.0..6.0",
  62. "firefox/15.0..latest",
  63. "firefox/nightly",
  64. "chrome/4.0..10.0",
  65. "chrome/20.0..latest",
  66. "chrome/canary",
  67. "opera/10.0..12.0",
  68. "opera/15.0..latest",
  69. "opera/next",
  70. "safari/4.0..latest",
  71. "ipad/6.0..latest",
  72. "iphone/6.0..latest",
  73. "android-browser/4.2"
  74. ]
  75. },
  76. "engines": {
  77. "node": ">= 0.4"
  78. },
  79. "auto-changelog": {
  80. "output": "CHANGELOG.md",
  81. "template": "keepachangelog",
  82. "unreleased": false,
  83. "commitLimit": false,
  84. "backfillLimit": false,
  85. "hideCredit": true
  86. },
  87. "publishConfig": {
  88. "ignore": [
  89. ".github/workflows"
  90. ]
  91. }
  92. }