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