package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "is-negative-zero",
  3. "version": "2.0.1",
  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. "prepublish": "safe-publish-latest",
  13. "pretest": "npm run lint",
  14. "test": "npm run tests-only",
  15. "tests-only": "nyc tape 'test/**/*.js'",
  16. "posttest": "npx aud --production",
  17. "lint": "eslint .",
  18. "version": "auto-changelog && git add CHANGELOG.md",
  19. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git://github.com/inspect-js/is-negative-zero.git"
  24. },
  25. "bugs": {
  26. "url": "https://github.com/inspect-js/is-negative-zero/issues"
  27. },
  28. "homepage": "https://github.com/inspect-js/is-negative-zero",
  29. "keywords": [
  30. "is",
  31. "negative",
  32. "zero",
  33. "negative zero",
  34. "number",
  35. "positive",
  36. "0",
  37. "-0"
  38. ],
  39. "dependencies": {},
  40. "devDependencies": {
  41. "@ljharb/eslint-config": "^17.3.0",
  42. "aud": "^1.1.3",
  43. "auto-changelog": "^2.2.1",
  44. "eslint": "^7.14.0",
  45. "nyc": "^10.3.2",
  46. "safe-publish-latest": "^1.1.4",
  47. "tape": "^5.0.1"
  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. }