package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "is-object",
  3. "version": "1.0.2",
  4. "description": "Checks whether a value is an object",
  5. "keywords": [],
  6. "author": "Raynos <raynos2@gmail.com>",
  7. "funding": {
  8. "url": "https://github.com/sponsors/ljharb"
  9. },
  10. "repository": "git://github.com/inspect-js/is-object.git",
  11. "main": "index",
  12. "homepage": "https://github.com/inspect-js/is-object",
  13. "contributors": [
  14. {
  15. "name": "Raynos"
  16. },
  17. {
  18. "name": "Jordan Harband",
  19. "url": "https://github.com/ljharb"
  20. }
  21. ],
  22. "bugs": {
  23. "url": "https://github.com/inspect-js/is-object/issues",
  24. "email": "ljharb@gmail.com"
  25. },
  26. "dependencies": {},
  27. "devDependencies": {
  28. "@ljharb/eslint-config": "^17.3.0",
  29. "aud": "^1.1.3",
  30. "auto-changelog": "^2.2.1",
  31. "eslint": "^7.14.0",
  32. "nyc": "^10.3.2",
  33. "safe-publish-latest": "^1.1.4",
  34. "tape": "^5.0.1"
  35. },
  36. "license": "MIT",
  37. "licenses": [
  38. {
  39. "type": "MIT",
  40. "url": "http://github.com/inspect-js/is-object/raw/master/LICENSE"
  41. }
  42. ],
  43. "scripts": {
  44. "prepublish": "safe-publish-latest",
  45. "pretest": "npm run lint",
  46. "lint": "eslint --ext=.js,.mjs .",
  47. "tests-only": "nyc tape 'test/**/*.js'",
  48. "test": "npm run tests-only",
  49. "posttest": "aud --production",
  50. "version": "auto-changelog && git add CHANGELOG.md",
  51. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  52. },
  53. "testling": {
  54. "files": "test/index.js",
  55. "browsers": [
  56. "ie/6..latest",
  57. "firefox/3..6",
  58. "firefox/16..latest",
  59. "firefox/nightly",
  60. "chrome/22..latest",
  61. "chrome/canary",
  62. "opera/10.0",
  63. "opera/11..latest",
  64. "opera/next",
  65. "safari/4..latest",
  66. "ipad/6.0..latest",
  67. "iphone/6.0..latest"
  68. ]
  69. },
  70. "auto-changelog": {
  71. "output": "CHANGELOG.md",
  72. "template": "keepachangelog",
  73. "unreleased": false,
  74. "commitLimit": false,
  75. "backfillLimit": false,
  76. "hideCredit": true
  77. }
  78. }