utils-merge2
Version:
Merge and extend objects.
94 lines (93 loc) • 2.35 kB
JSON
{
"name": "utils-merge2",
"version": "2.0.0",
"description": "Merge and extend objects.",
"author": {
"name": "Athan Reines",
"email": "kgryte@gmail.com"
},
"contributors": [
{
"name": "Athan Reines",
"email": "kgryte@gmail.com"
}
],
"scripts": {
"test": "if [ \"${TRAVIS}\" ]; then npm run test-ci; else npm run test-local; fi",
"test-local": "tape \"./test/*.js\" | tap-spec",
"test-ci": "npm run test-local && xvfb-run npm run test-browsers",
"test-cov": "istanbul cover --dir ./reports/coverage --report lcov tape -- \"./test/*.js\"",
"test-browsers": "browserify ./test/*.js | testling | tap-spec",
"coverage": "istanbul cover --dir ./reports/codecov/coverage --report lcovonly tape -- \"./test/*.js\" && cat ./reports/codecov/coverage/lcov.info | codecov && rm -rf ./reports/codecov"
},
"main": "./lib",
"repository": {
"type": "git",
"url": "git://github.com/kgryte/utils-merge.git"
},
"keywords": [
"utilities",
"utility",
"utils",
"util",
"merge",
"deep",
"deepmerge",
"shallow",
"shallowmerge",
"extend",
"deepextend",
"xtend",
"array",
"object",
"date",
"regexp",
"assign",
"object.assign",
"polyfill",
"ponyfill"
],
"bugs": {
"url": "https://github.com/kgryte/utils-merge/issues"
},
"dependencies": {
"const-pinf-float64": "^1.0.0",
"object-keys": "^1.0.9",
"type-name": "^2.0.0",
"utils-copy": "^1.1.1",
"validate.io-boolean-primitive": "^1.0.0",
"validate.io-buffer": "^1.0.1",
"validate.io-function": "^1.0.2",
"validate.io-object": "^1.0.3",
"validate.io-positive-integer": "^1.0.0"
},
"devDependencies": {
"browserify": "13.x.x",
"codecov": "1.x.x",
"istanbul": "^0.4.1",
"jshint": "2.x.x",
"jshint-stylish": "2.x.x",
"tap-spec": "4.x.x",
"tape": "4.x.x",
"testling": "1.x.x"
},
"testling": {
"files": [
"test/*.js"
],
"browsers": [
"iexplore/6.0..latest",
"firefox/3.0..latest",
"firefox/nightly",
"chrome/4.0..latest",
"chrome/canary",
"opera/10.0..latest",
"opera/next",
"safari/4.0..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
},
"license": "MIT"
}