package.json 664 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "is-plain-obj",
  3. "version": "3.0.0",
  4. "description": "Check if a value is a plain object",
  5. "license": "MIT",
  6. "repository": "sindresorhus/is-plain-obj",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=10"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "object",
  25. "is",
  26. "check",
  27. "test",
  28. "type",
  29. "plain",
  30. "vanilla",
  31. "pure",
  32. "simple"
  33. ],
  34. "devDependencies": {
  35. "ava": "^2.4.0",
  36. "tsd": "^0.13.1",
  37. "xo": "^0.33.1"
  38. }
  39. }