package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "name": "object-is",
  3. "version": "1.1.6",
  4. "description": "ES2015-compliant shim for Object.is - differentiates between -0 and +0",
  5. "author": "Jordan Harband",
  6. "funding": {
  7. "url": "https://github.com/sponsors/ljharb"
  8. },
  9. "license": "MIT",
  10. "main": "index.js",
  11. "scripts": {
  12. "prepack": "npmignore --auto --commentLines=autogenerated",
  13. "prepublishOnly": "safe-publish-latest",
  14. "prepublish": "not-in-publish || npm run prepublishOnly",
  15. "pretest": "npm run lint",
  16. "tests-only": "nyc tape 'test/**/*.js'",
  17. "test": "npm run tests-only",
  18. "posttest": "aud --production",
  19. "lint": "eslint --ext=js,mjs .",
  20. "postlint": "es-shim-api --bound",
  21. "version": "auto-changelog && git add CHANGELOG.md",
  22. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git://github.com/es-shims/object-is.git"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/es-shims/object-is/issues"
  30. },
  31. "homepage": "https://github.com/es-shims/object-is",
  32. "keywords": [
  33. "is",
  34. "Object.is",
  35. "equality",
  36. "sameValueZero",
  37. "ES6",
  38. "ES2015",
  39. "shim",
  40. "polyfill",
  41. "es-shim API"
  42. ],
  43. "dependencies": {
  44. "call-bind": "^1.0.7",
  45. "define-properties": "^1.2.1"
  46. },
  47. "devDependencies": {
  48. "@es-shims/api": "^2.4.2",
  49. "@ljharb/eslint-config": "^21.1.0",
  50. "aud": "^2.0.4",
  51. "auto-changelog": "^2.4.0",
  52. "eslint": "=8.8.0",
  53. "functions-have-names": "^1.2.3",
  54. "has-symbols": "^1.0.3",
  55. "in-publish": "^2.0.1",
  56. "npmignore": "^0.3.1",
  57. "nyc": "^10.3.2",
  58. "safe-publish-latest": "^2.0.0",
  59. "tape": "^5.7.5"
  60. },
  61. "testling": {
  62. "files": "test.js",
  63. "browsers": [
  64. "iexplore/6.0..latest",
  65. "firefox/3.0..6.0",
  66. "firefox/15.0..latest",
  67. "firefox/nightly",
  68. "chrome/4.0..10.0",
  69. "chrome/20.0..latest",
  70. "chrome/canary",
  71. "opera/10.0..12.0",
  72. "opera/15.0..latest",
  73. "opera/next",
  74. "safari/4.0..latest",
  75. "ipad/6.0..latest",
  76. "iphone/6.0..latest",
  77. "android-browser/4.2"
  78. ]
  79. },
  80. "engines": {
  81. "node": ">= 0.4"
  82. },
  83. "auto-changelog": {
  84. "output": "CHANGELOG.md",
  85. "template": "keepachangelog",
  86. "unreleased": false,
  87. "commitLimit": false,
  88. "backfillLimit": false,
  89. "hideCredit": true
  90. },
  91. "publishConfig": {
  92. "ignore": [
  93. ".github/workflows"
  94. ]
  95. }
  96. }