package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "is-plain-object",
  3. "description": "Returns true if an object was created by the `Object` constructor.",
  4. "version": "3.0.1",
  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": "index.cjs.js",
  20. "module": "index.es.js",
  21. "types": "index.d.ts",
  22. "files": [
  23. "index.d.ts",
  24. "index.es.js",
  25. "index.cjs.js"
  26. ],
  27. "engines": {
  28. "node": ">=0.10.0"
  29. },
  30. "scripts": {
  31. "build": "rollup -c",
  32. "test_browser": "mocha-headless-chrome --args=disable-web-security -f test/browser.html",
  33. "test_node": "mocha -r esm",
  34. "test": "npm run test_node && npm run build && npm run test_browser",
  35. "prepare": "rollup -c"
  36. },
  37. "devDependencies": {
  38. "@rollup/plugin-node-resolve": "^8.1.0",
  39. "chai": "^4.2.0",
  40. "esm": "^3.2.22",
  41. "gulp-format-md": "^1.0.0",
  42. "isobject": "^4.0.0",
  43. "mocha": "^6.1.4",
  44. "mocha-headless-chrome": "^3.1.0",
  45. "rollup": "^1.10.1"
  46. },
  47. "keywords": [
  48. "check",
  49. "is",
  50. "is-object",
  51. "isobject",
  52. "javascript",
  53. "kind",
  54. "kind-of",
  55. "object",
  56. "plain",
  57. "type",
  58. "typeof",
  59. "value"
  60. ],
  61. "verb": {
  62. "toc": false,
  63. "layout": "default",
  64. "tasks": [
  65. "readme"
  66. ],
  67. "plugins": [
  68. "gulp-format-md"
  69. ],
  70. "related": {
  71. "list": [
  72. "is-number",
  73. "isobject",
  74. "kind-of"
  75. ]
  76. },
  77. "lint": {
  78. "reflinks": true
  79. }
  80. }
  81. }