a034121db54bdc3b2568327cedd5c92eda5607209afc6e6b1edb8dccec6c6b233831c92118ff49485465626dffa3e932f88936810f53affc40ffe7c44c5902 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. {
  2. "name": "is-arguments",
  3. "version": "1.2.0",
  4. "description": "Is this an arguments object? It's a harder question than you think.",
  5. "author": {
  6. "name": "Jordan Harband",
  7. "email": "ljharb@gmail.com",
  8. "url": "http://ljharb.codes"
  9. },
  10. "funding": {
  11. "url": "https://github.com/sponsors/ljharb"
  12. },
  13. "contributors": [
  14. {
  15. "name": "Jordan Harband",
  16. "email": "ljharb@gmail.com",
  17. "url": "http://ljharb.codes"
  18. }
  19. ],
  20. "license": "MIT",
  21. "main": "index.js",
  22. "sideEffects": false,
  23. "scripts": {
  24. "prepack": "npmignore --auto --commentLines=autogenerated",
  25. "prepublishOnly": "safe-publish-latest",
  26. "prepublish": "not-in-publish || npm run prepublishOnly",
  27. "pretest": "npm run --silent lint",
  28. "test": "npm run tests-only",
  29. "tests-only": "nyc tape 'test/**/*.js'",
  30. "posttest": "npx npm@'>= 10.2' audit --production",
  31. "lint": "eslint --ext=js,mjs .",
  32. "postlint": "tsc && attw -P",
  33. "version": "auto-changelog && git add CHANGELOG.md",
  34. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  35. },
  36. "repository": {
  37. "type": "git",
  38. "url": "git://github.com/inspect-js/is-arguments.git"
  39. },
  40. "bugs": {
  41. "url": "https://github.com/inspect-js/is-arguments/issues"
  42. },
  43. "homepage": "https://github.com/inspect-js/is-arguments",
  44. "keywords": [
  45. "arguments",
  46. "js",
  47. "javascript",
  48. "is-arguments",
  49. "is",
  50. "object"
  51. ],
  52. "dependencies": {
  53. "call-bound": "^1.0.2",
  54. "has-tostringtag": "^1.0.2"
  55. },
  56. "devDependencies": {
  57. "@arethetypeswrong/cli": "^0.17.1",
  58. "@ljharb/eslint-config": "^21.1.1",
  59. "@ljharb/tsconfig": "^0.2.2",
  60. "@types/tape": "^5.6.5",
  61. "auto-changelog": "^2.5.0",
  62. "encoding": "^0.1.13",
  63. "eslint": "=8.8.0",
  64. "in-publish": "^2.0.1",
  65. "npmignore": "^0.3.1",
  66. "nyc": "^10.3.2",
  67. "safe-publish-latest": "^2.0.0",
  68. "tape": "^5.9.0",
  69. "typescript": "next"
  70. },
  71. "testling": {
  72. "files": "test.js",
  73. "browsers": [
  74. "iexplore/6.0..latest",
  75. "firefox/3.0..6.0",
  76. "firefox/15.0..latest",
  77. "firefox/nightly",
  78. "chrome/4.0..10.0",
  79. "chrome/20.0..latest",
  80. "chrome/canary",
  81. "opera/10.0..latest",
  82. "opera/next",
  83. "safari/4.0..latest",
  84. "ipad/6.0..latest",
  85. "iphone/6.0..latest",
  86. "android-browser/4.2"
  87. ]
  88. },
  89. "engines": {
  90. "node": ">= 0.4"
  91. },
  92. "auto-changelog": {
  93. "output": "CHANGELOG.md",
  94. "template": "keepachangelog",
  95. "unreleased": false,
  96. "commitLimit": false,
  97. "backfillLimit": false,
  98. "hideCredit": true
  99. },
  100. "publishConfig": {
  101. "ignore": [
  102. ".github/workflows"
  103. ]
  104. }
  105. }