package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "is-arguments",
  3. "version": "1.1.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. "scripts": {
  23. "prepublish": "safe-publish-latest",
  24. "pretest": "npm run --silent lint",
  25. "test": "npm run tests-only",
  26. "tests-only": "nyc tape 'test/**/*.js'",
  27. "posttest": "npx aud --production",
  28. "lint": "eslint .",
  29. "version": "auto-changelog && git add CHANGELOG.md",
  30. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  31. },
  32. "repository": {
  33. "type": "git",
  34. "url": "git://github.com/inspect-js/is-arguments.git"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/inspect-js/is-arguments/issues"
  38. },
  39. "homepage": "https://github.com/inspect-js/is-arguments",
  40. "keywords": [
  41. "arguments",
  42. "js",
  43. "javascript",
  44. "is-arguments",
  45. "is",
  46. "object"
  47. ],
  48. "dependencies": {
  49. "call-bind": "^1.0.0"
  50. },
  51. "devDependencies": {
  52. "@ljharb/eslint-config": "^17.3.0",
  53. "aud": "^1.1.3",
  54. "auto-changelog": "^2.2.1",
  55. "eslint": "^7.14.0",
  56. "nyc": "^10.3.2",
  57. "safe-publish-latest": "^1.1.4",
  58. "tape": "^5.0.1"
  59. },
  60. "testling": {
  61. "files": "test.js",
  62. "browsers": [
  63. "iexplore/6.0..latest",
  64. "firefox/3.0..6.0",
  65. "firefox/15.0..latest",
  66. "firefox/nightly",
  67. "chrome/4.0..10.0",
  68. "chrome/20.0..latest",
  69. "chrome/canary",
  70. "opera/10.0..latest",
  71. "opera/next",
  72. "safari/4.0..latest",
  73. "ipad/6.0..latest",
  74. "iphone/6.0..latest",
  75. "android-browser/4.2"
  76. ]
  77. },
  78. "engines": {
  79. "node": ">= 0.4"
  80. },
  81. "auto-changelog": {
  82. "output": "CHANGELOG.md",
  83. "template": "keepachangelog",
  84. "unreleased": false,
  85. "commitLimit": false,
  86. "backfillLimit": false,
  87. "hideCredit": true
  88. }
  89. }