package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "is-arguments",
  3. "version": "1.1.1",
  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. "scripts": {
  23. "prepublishOnly": "safe-publish-latest",
  24. "prepublish": "not-in-publish || npm run prepublishOnly",
  25. "pretest": "npm run --silent lint",
  26. "test": "npm run tests-only",
  27. "tests-only": "nyc tape 'test/**/*.js'",
  28. "posttest": "npx aud --production",
  29. "lint": "eslint .",
  30. "version": "auto-changelog && git add CHANGELOG.md",
  31. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "git://github.com/inspect-js/is-arguments.git"
  36. },
  37. "bugs": {
  38. "url": "https://github.com/inspect-js/is-arguments/issues"
  39. },
  40. "homepage": "https://github.com/inspect-js/is-arguments",
  41. "keywords": [
  42. "arguments",
  43. "js",
  44. "javascript",
  45. "is-arguments",
  46. "is",
  47. "object"
  48. ],
  49. "dependencies": {
  50. "call-bind": "^1.0.2",
  51. "has-tostringtag": "^1.0.0"
  52. },
  53. "devDependencies": {
  54. "@ljharb/eslint-config": "^17.6.0",
  55. "aud": "^1.1.5",
  56. "auto-changelog": "^2.3.0",
  57. "eslint": "^7.32.0",
  58. "nyc": "^10.3.2",
  59. "safe-publish-latest": "^1.1.4",
  60. "tape": "^5.3.0"
  61. },
  62. "testling": {
  63. "files": "test.js",
  64. "browsers": [
  65. "iexplore/6.0..latest",
  66. "firefox/3.0..6.0",
  67. "firefox/15.0..latest",
  68. "firefox/nightly",
  69. "chrome/4.0..10.0",
  70. "chrome/20.0..latest",
  71. "chrome/canary",
  72. "opera/10.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. }