@inst/vscode-bin-darwin
Version:
BINARY ONLY - VSCode binary deployment for macOS
114 lines (113 loc) • 5.75 kB
JSON
{
"_args": [
[
{
"raw": "isobject@https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
"scope": null,
"escapedName": "isobject",
"name": "isobject",
"rawSpec": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
"spec": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
"type": "remote"
},
"/Users/code/tfs/agent3/_work/2/s"
]
],
"_from": "isobject@>=2.0.0 <3.0.0",
"_id": "isobject@2.1.0",
"_inCache": true,
"_location": "/isobject",
"_phantomChildren": {},
"_requested": {
"raw": "isobject@https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
"scope": null,
"escapedName": "isobject",
"name": "isobject",
"rawSpec": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
"spec": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
"type": "remote"
},
"_requiredBy": [
"/",
"/fill-range"
],
"_resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
"_shasum": "f065561096a3f1da2ef46272f815c840d87e0c89",
"_shrinkwrap": null,
"_spec": "isobject@https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
"_where": "/Users/code/tfs/agent3/_work/2/s",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"bugs": {
"url": "https://github.com/jonschlinkert/isobject/issues"
},
"dependencies": {
"isarray": "1.0.0"
},
"description": "Returns true if the value is an object and not an array or null.",
"devDependencies": {
"gulp-format-md": "^0.1.9",
"mocha": "^2.4.5"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/jonschlinkert/isobject",
"keywords": [
"check",
"is",
"is-object",
"isobject",
"kind",
"kind-of",
"kindof",
"native",
"object",
"type",
"typeof",
"value"
],
"license": "MIT",
"main": "index.js",
"name": "isobject",
"optionalDependencies": {},
"readme": "# isobject [](https://www.npmjs.com/package/isobject) [](https://npmjs.org/package/isobject) [](https://travis-ci.org/jonschlinkert/isobject)\n\nReturns true if the value is an object and not an array or null.\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/):\n\n```sh\n$ npm install isobject --save\n```\n\nUse [is-plain-object](https://github.com/jonschlinkert/is-plain-object) if you want only objects that are created by the `Object` constructor.\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/):\n\n```sh\n$ npm install isobject\n```\n\nInstall with [bower](http://bower.io/)\n\n```sh\n$ bower install isobject\n```\n\n## Usage\n\n```js\nvar isObject = require('isobject');\n```\n\n**True**\n\nAll of the following return `true`:\n\n```js\nisObject({});\nisObject(Object.create({}));\nisObject(Object.create(Object.prototype));\nisObject(Object.create(null));\nisObject({});\nisObject(new Foo);\nisObject(/foo/);\n```\n\n**False**\n\nAll of the following return `false`:\n\n```js\nisObject();\nisObject(function () {});\nisObject(1);\nisObject([]);\nisObject(undefined);\nisObject(null);\n```\n\n## Related projects\n\nYou might also be interested in these projects:\n\n[merge-deep](https://www.npmjs.com/package/merge-deep): Recursively merge values in a javascript object. | [homepage](https://github.com/jonschlinkert/merge-deep)\n\n* [extend-shallow](https://www.npmjs.com/package/extend-shallow): Extend an object with the properties of additional objects. node.js/javascript util. | [homepage](https://github.com/jonschlinkert/extend-shallow)\n* [is-plain-object](https://www.npmjs.com/package/is-plain-object): Returns true if an object was created by the `Object` constructor. | [homepage](https://github.com/jonschlinkert/is-plain-object)\n* [kind-of](https://www.npmjs.com/package/kind-of): Get the native type of a value. | [homepage](https://github.com/jonschlinkert/kind-of)\n\n## Contributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/isobject/issues/new).\n\n## Building docs\n\nGenerate readme and API documentation with [verb](https://github.com/verbose/verb):\n\n```sh\n$ npm install verb && npm run docs\n```\n\nOr, if [verb](https://github.com/verbose/verb) is installed globally:\n\n```sh\n$ verb\n```\n\n## Running tests\n\nInstall dev dependencies:\n\n```sh\n$ npm install -d && npm test\n```\n\n## Author\n\n**Jon Schlinkert**\n\n* [github/jonschlinkert](https://github.com/jonschlinkert)\n* [twitter/jonschlinkert](http://twitter.com/jonschlinkert)\n\n## License\n\nCopyright © 2016, [Jon Schlinkert](https://github.com/jonschlinkert).\nReleased under the [MIT license](https://github.com/jonschlinkert/isobject/blob/master/LICENSE).\n\n***\n\n_This file was generated by [verb](https://github.com/verbose/verb), v0.9.0, on April 25, 2016._",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/jonschlinkert/isobject.git"
},
"scripts": {
"test": "mocha"
},
"verb": {
"related": {
"list": [
"merge-deep",
"extend-shallow",
"is-plain-object",
"kind-of"
]
},
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
},
"reflinks": [
"verb"
]
},
"version": "2.1.0"
}