package.json
 1  {
 2    "name": "is-number",
 3    "description": "Returns true if the value is a number. comprehensive tests.",
 4    "version": "3.0.0",
 5    "homepage": "https://github.com/jonschlinkert/is-number",
 6    "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
 7    "contributors": [
 8      "Charlike Mike Reagent (http://www.tunnckocore.tk)",
 9      "Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)"
10    ],
11    "repository": "jonschlinkert/is-number",
12    "bugs": {
13      "url": "https://github.com/jonschlinkert/is-number/issues"
14    },
15    "license": "MIT",
16    "files": [
17      "index.js"
18    ],
19    "main": "index.js",
20    "engines": {
21      "node": ">=0.10.0"
22    },
23    "scripts": {
24      "test": "mocha"
25    },
26    "dependencies": {
27      "kind-of": "^3.0.2"
28    },
29    "devDependencies": {
30      "benchmarked": "^0.2.5",
31      "chalk": "^1.1.3",
32      "gulp-format-md": "^0.1.10",
33      "mocha": "^3.0.2"
34    },
35    "keywords": [
36      "check",
37      "coerce",
38      "coercion",
39      "integer",
40      "is",
41      "is-nan",
42      "is-num",
43      "is-number",
44      "istype",
45      "kind",
46      "math",
47      "nan",
48      "num",
49      "number",
50      "numeric",
51      "test",
52      "type",
53      "typeof",
54      "value"
55    ],
56    "verb": {
57      "related": {
58        "list": [
59          "even",
60          "is-even",
61          "is-odd",
62          "is-primitive",
63          "kind-of",
64          "odd"
65        ]
66      },
67      "toc": false,
68      "layout": "default",
69      "tasks": [
70        "readme"
71      ],
72      "plugins": [
73        "gulp-format-md"
74      ],
75      "lint": {
76        "reflinks": true
77      },
78      "reflinks": [
79        "verb",
80        "verb-generate-readme"
81      ]
82    }
83  }