mirror of
https://github.com/KevinMidboe/zoff.git
synced 2026-01-11 12:05:34 +00:00
43 lines
1.6 KiB
JSON
Executable File
43 lines
1.6 KiB
JSON
Executable File
{
|
|
"name": "utils-merge",
|
|
"version": "1.0.0",
|
|
"description": "merge() utility function",
|
|
"keywords": [
|
|
"util"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/jaredhanson/utils-merge.git"
|
|
},
|
|
"bugs": {
|
|
"url": "http://github.com/jaredhanson/utils-merge/issues"
|
|
},
|
|
"author": {
|
|
"name": "Jared Hanson",
|
|
"email": "jaredhanson@gmail.com",
|
|
"url": "http://www.jaredhanson.net/"
|
|
},
|
|
"licenses": [
|
|
{
|
|
"type": "MIT",
|
|
"url": "http://www.opensource.org/licenses/MIT"
|
|
}
|
|
],
|
|
"main": "./index",
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"mocha": "1.x.x",
|
|
"chai": "1.x.x"
|
|
},
|
|
"scripts": {
|
|
"test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js"
|
|
},
|
|
"engines": {
|
|
"node": ">= 0.4.0"
|
|
},
|
|
"readme": "# utils-merge\n\nMerges the properties from a source object into a destination object.\n\n## Install\n\n $ npm install utils-merge\n\n## Usage\n\n```javascript\nvar a = { foo: 'bar' }\n , b = { bar: 'baz' };\n\nmerge(a, b);\n// => { foo: 'bar', bar: 'baz' }\n```\n\n## Tests\n\n $ npm install\n $ npm test\n\n[](http://travis-ci.org/jaredhanson/utils-merge)\n\n## Credits\n\n - [Jared Hanson](http://github.com/jaredhanson)\n\n## License\n\n[The MIT License](http://opensource.org/licenses/MIT)\n\nCopyright (c) 2013 Jared Hanson <[http://jaredhanson.net/](http://jaredhanson.net/)>\n",
|
|
"readmeFilename": "README.md",
|
|
"_id": "utils-merge@1.0.0",
|
|
"_from": "utils-merge@1.0.0"
|
|
}
|