1 | {
|
2 | "name": "isobject",
|
3 | "description": "Returns true if the value is an object and not an array or null.",
|
4 | "version": "4.0.0",
|
5 | "homepage": "https://github.com/jonschlinkert/isobject",
|
6 | "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
|
7 | "contributors": [
|
8 | "(https://github.com/LeSuisse)",
|
9 | "Brian Woodward (https://twitter.com/doowb)",
|
10 | "Jon Schlinkert (http://twitter.com/jonschlinkert)",
|
11 | "Magnús Dæhlen (https://github.com/magnudae)",
|
12 | "Tom MacWright (https://macwright.org)"
|
13 | ],
|
14 | "repository": "jonschlinkert/isobject",
|
15 | "bugs": {
|
16 | "url": "https://github.com/jonschlinkert/isobject/issues"
|
17 | },
|
18 | "license": "MIT",
|
19 | "files": [
|
20 | "index.d.ts",
|
21 | "index.cjs.js",
|
22 | "index.js"
|
23 | ],
|
24 | "main": "index.cjs.js",
|
25 | "module": "index.js",
|
26 | "engines": {
|
27 | "node": ">=0.10.0"
|
28 | },
|
29 | "scripts": {
|
30 | "build": "rollup -i index.js -o index.cjs.js -f cjs",
|
31 | "test": "mocha -r esm",
|
32 | "prepublish": "npm run build"
|
33 | },
|
34 | "dependencies": {},
|
35 | "devDependencies": {
|
36 | "esm": "^3.2.22",
|
37 | "gulp-format-md": "^0.1.9",
|
38 | "mocha": "^2.4.5",
|
39 | "rollup": "^1.10.1"
|
40 | },
|
41 | "keywords": [
|
42 | "check",
|
43 | "is",
|
44 | "is-object",
|
45 | "isobject",
|
46 | "kind",
|
47 | "kind-of",
|
48 | "kindof",
|
49 | "native",
|
50 | "object",
|
51 | "type",
|
52 | "typeof",
|
53 | "value"
|
54 | ],
|
55 | "types": "index.d.ts",
|
56 | "verb": {
|
57 | "related": {
|
58 | "list": [
|
59 | "extend-shallow",
|
60 | "is-plain-object",
|
61 | "kind-of",
|
62 | "merge-deep"
|
63 | ]
|
64 | },
|
65 | "toc": false,
|
66 | "layout": "default",
|
67 | "tasks": [
|
68 | "readme"
|
69 | ],
|
70 | "plugins": [
|
71 | "gulp-format-md"
|
72 | ],
|
73 | "lint": {
|
74 | "reflinks": true
|
75 | },
|
76 | "reflinks": [
|
77 | "verb"
|
78 | ]
|
79 | }
|
80 | }
|