package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "kind-of",
  3. "description": "Get the native type of a value.",
  4. "version": "5.1.0",
  5. "homepage": "https://github.com/jonschlinkert/kind-of",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "David Fox-Powell (https://dtothefp.github.io/me)",
  9. "James (https://twitter.com/aretecode)",
  10. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  11. "Ken Sheedlo (kensheedlo.com)",
  12. "laggingreflex (https://github.com/laggingreflex)",
  13. "Miguel Mota (https://miguelmota.com)",
  14. "Peter deHaan (http://about.me/peterdehaan)",
  15. "tunnckoCore (https://i.am.charlike.online)"
  16. ],
  17. "repository": "jonschlinkert/kind-of",
  18. "bugs": {
  19. "url": "https://github.com/jonschlinkert/kind-of/issues"
  20. },
  21. "license": "MIT",
  22. "files": [
  23. "index.js"
  24. ],
  25. "main": "index.js",
  26. "engines": {
  27. "node": ">=0.10.0"
  28. },
  29. "scripts": {
  30. "test": "mocha",
  31. "prepublish": "browserify -o browser.js -e index.js -s index --bare"
  32. },
  33. "devDependencies": {
  34. "ansi-bold": "^0.1.1",
  35. "benchmarked": "^1.1.1",
  36. "browserify": "^14.4.0",
  37. "gulp-format-md": "^0.1.12",
  38. "matched": "^0.4.4",
  39. "mocha": "^3.4.2",
  40. "type-of": "^2.0.1",
  41. "typeof": "^1.0.0"
  42. },
  43. "keywords": [
  44. "arguments",
  45. "array",
  46. "boolean",
  47. "check",
  48. "date",
  49. "function",
  50. "is",
  51. "is-type",
  52. "is-type-of",
  53. "kind",
  54. "kind-of",
  55. "number",
  56. "object",
  57. "of",
  58. "regexp",
  59. "string",
  60. "test",
  61. "type",
  62. "type-of",
  63. "typeof",
  64. "types"
  65. ],
  66. "verb": {
  67. "related": {
  68. "list": [
  69. "is-glob",
  70. "is-number",
  71. "is-primitive"
  72. ]
  73. },
  74. "toc": false,
  75. "layout": "default",
  76. "tasks": [
  77. "readme"
  78. ],
  79. "plugins": [
  80. "gulp-format-md"
  81. ],
  82. "lint": {
  83. "reflinks": true
  84. },
  85. "reflinks": [
  86. "type-of",
  87. "typeof",
  88. "verb"
  89. ]
  90. }
  91. }