layaair2-cmd
Version:
layaair version 2 toolkit
147 lines (146 loc) • 6.16 kB
JSON
{
"_args": [
[
{
"raw": "object.defaults@^1.1.0",
"scope": null,
"escapedName": "object.defaults",
"name": "object.defaults",
"rawSpec": "^1.1.0",
"spec": ">=1.1.0 <2.0.0",
"type": "range"
},
"E:\\Mine\\Project\\git\\laya\\dawawa\\layaairdoc_cmd\\node_modules\\fined"
]
],
"_from": "object.defaults@>=1.1.0 <2.0.0",
"_id": "object.defaults@1.1.0",
"_inCache": true,
"_location": "/object.defaults",
"_nodeVersion": "0.10.41",
"_npmOperationalInternal": {
"host": "packages-12-west.internal.npmjs.com",
"tmp": "tmp/object.defaults-1.1.0.tgz_1493231160288_0.6925601931288838"
},
"_npmUser": {
"name": "phated",
"email": "blaine.bublitz@gmail.com"
},
"_npmVersion": "2.15.2",
"_phantomChildren": {},
"_requested": {
"raw": "object.defaults@^1.1.0",
"scope": null,
"escapedName": "object.defaults",
"name": "object.defaults",
"rawSpec": "^1.1.0",
"spec": ">=1.1.0 <2.0.0",
"type": "range"
},
"_requiredBy": [
"/fined"
],
"_resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz",
"_shasum": "3a7f868334b407dea06da16d88d5cd29e435fecf",
"_shrinkwrap": null,
"_spec": "object.defaults@^1.1.0",
"_where": "E:\\Mine\\Project\\git\\laya\\dawawa\\layaairdoc_cmd\\node_modules\\fined",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"bugs": {
"url": "https://github.com/jonschlinkert/object.defaults/issues"
},
"contributors": [
{
"name": "Jon Schlinkert",
"email": "jon.schlinkert@sellside.com",
"url": "http://twitter.com/jonschlinkert"
},
{
"name": "Sobolev Nikita",
"email": "mail@sobolevn.me",
"url": "https://github.com/sobolevn"
}
],
"dependencies": {
"array-each": "^1.0.1",
"array-slice": "^1.0.0",
"for-own": "^1.0.0",
"isobject": "^3.0.0"
},
"description": "Like `extend` but only copies missing properties/values to the target object.",
"devDependencies": {
"gulp-format-md": "^0.1.11",
"mocha": "^3.2.0"
},
"directories": {},
"dist": {
"shasum": "3a7f868334b407dea06da16d88d5cd29e435fecf",
"tarball": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js",
"immutable.js",
"mutable.js"
],
"gitHead": "9c2ebcb48968ab3cd1e5ebe84b55b6c926a2a3e8",
"homepage": "https://github.com/jonschlinkert/object.defaults",
"keywords": [
"copy",
"default",
"defaults",
"extend",
"javascript",
"js",
"merge",
"object",
"properties",
"property",
"util",
"utils",
"value",
"values"
],
"license": "MIT",
"main": "index.js",
"maintainers": [
{
"name": "jonschlinkert",
"email": "github@sellside.com"
},
{
"name": "phated",
"email": "blaine.bublitz@gmail.com"
}
],
"name": "object.defaults",
"optionalDependencies": {},
"readme": "# object.defaults [](https://www.npmjs.com/package/object.defaults) [](https://npmjs.org/package/object.defaults) [](https://npmjs.org/package/object.defaults) [](https://travis-ci.org/jonschlinkert/object.defaults)\n\n> Like `extend` but only copies missing properties/values to the target object.\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/):\n\n```sh\n$ npm install --save object.defaults\n```\n\nInstall with [bower](https://bower.io/)\n\n```sh\n$ bower install object.defaults --save\n```\n\n## Usage\n\n```js\nvar defaults = require('object.defaults');\n\nvar obj = {a: 'c'};\ndefaults(obj, {a: 'bbb', d: 'c'});\nconsole.log(obj);\n//=> {a: 'c', d: 'c'}\n```\n\nOr immutable defaulting:\n```js\nvar defaults = require('object.defaults/immutable');\nvar obj = {a: 'c'};\nvar defaulted = defaults(obj, {a: 'bbb', d: 'c'});\nconsole.log(obj !== defaulted);\n//=> true\n```\n\n## About\n\n### Contributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).\n\n### Contributors\n\n| **Commits** | **Contributor** | \n| --- | --- |\n| 16 | [jonschlinkert](https://github.com/jonschlinkert) |\n| 1 | [phated](https://github.com/phated) |\n| 1 | [sobolevn](https://github.com/sobolevn) |\n\n### Building docs\n\n_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_\n\nTo generate the readme, run the following command:\n\n```sh\n$ npm install -g verbose/verb#dev verb-generate-readme && verb\n```\n\n### Running tests\n\nRunning and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:\n\n```sh\n$ npm install && npm test\n```\n\n### Author\n\n**Jon Schlinkert**\n\n* [github/jonschlinkert](https://github.com/jonschlinkert)\n* [twitter/jonschlinkert](https://twitter.com/jonschlinkert)\n\n### License\n\nCopyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).\nReleased under the [MIT License](LICENSE).\n\n***\n\n_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.5.0, on April 26, 2017._",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/jonschlinkert/object.defaults.git"
},
"scripts": {
"test": "mocha"
},
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
}
},
"version": "1.1.0"
}