package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "is-plain-object",
  3. "description": "Returns true if an object was created by the `Object` constructor, or Object.create(null).",
  4. "version": "5.0.0",
  5. "homepage": "https://github.com/jonschlinkert/is-plain-object",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  9. "Osman Nuri Okumuş (http://onokumus.com)",
  10. "Steven Vachon (https://svachon.com)",
  11. "(https://github.com/wtgtybhertgeghgtwtg)",
  12. "Bogdan Chadkin (https://github.com/TrySound)"
  13. ],
  14. "repository": "jonschlinkert/is-plain-object",
  15. "bugs": {
  16. "url": "https://github.com/jonschlinkert/is-plain-object/issues"
  17. },
  18. "license": "MIT",
  19. "main": "dist/is-plain-object.js",
  20. "module": "dist/is-plain-object.mjs",
  21. "types": "is-plain-object.d.ts",
  22. "files": [
  23. "is-plain-object.d.ts",
  24. "dist"
  25. ],
  26. "exports": {
  27. ".": {
  28. "import": "./dist/is-plain-object.mjs",
  29. "require": "./dist/is-plain-object.js"
  30. },
  31. "./package.json": "./package.json"
  32. },
  33. "engines": {
  34. "node": ">=0.10.0"
  35. },
  36. "scripts": {
  37. "build": "rollup -c",
  38. "test_browser": "mocha-headless-chrome --args=disable-web-security -f test/browser.html",
  39. "test_node": "mocha -r esm",
  40. "test": "npm run test_node && npm run build && npm run test_browser",
  41. "prepare": "rollup -c"
  42. },
  43. "devDependencies": {
  44. "chai": "^4.2.0",
  45. "esm": "^3.2.22",
  46. "gulp-format-md": "^1.0.0",
  47. "mocha": "^6.1.4",
  48. "mocha-headless-chrome": "^3.1.0",
  49. "rollup": "^2.22.1"
  50. },
  51. "keywords": [
  52. "check",
  53. "is",
  54. "is-object",
  55. "isobject",
  56. "javascript",
  57. "kind",
  58. "kind-of",
  59. "object",
  60. "plain",
  61. "type",
  62. "typeof",
  63. "value"
  64. ],
  65. "verb": {
  66. "toc": false,
  67. "layout": "default",
  68. "tasks": [
  69. "readme"
  70. ],
  71. "plugins": [
  72. "gulp-format-md"
  73. ],
  74. "related": {
  75. "list": [
  76. "is-number",
  77. "isobject",
  78. "kind-of"
  79. ]
  80. },
  81. "lint": {
  82. "reflinks": true
  83. }
  84. }
  85. }