object-assign-shim
Version:
ES6 spec-compliant Object.assign shim. Shims Object constructor automatically.
63 lines (61 loc) • 1.34 kB
JSON
{
"name": "object-assign-shim",
"version": "1.0.0",
"author": "Dimitri Benin",
"description": "ES6 spec-compliant Object.assign shim. Shims Object constructor automatically.",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "npm run lint && node test/index.js && npm run security",
"coverage": "covert test/*.js",
"coverage:quiet": "covert test/*.js --quiet",
"lint": "npm run jscs && npm run eslint",
"eslint": "eslint *.js test/*.js",
"jscs": "jscs *.js test/*.js",
"security": "nsp package"
},
"repository": {
"type": "git",
"url": "git://github.com/BendingBender/object-assign-shim.git"
},
"keywords": [
"Object.assign",
"assign",
"ES6",
"extend",
"$.extend",
"jQuery",
"_.extend",
"Underscore"
],
"dependencies": {},
"devDependencies": {
"is": "^3.0.1",
"tape": "^4.0.0",
"covert": "^1.1.0",
"jscs": "^1.13.1",
"nsp": "^1.0.1",
"eslint": "^0.21.0"
},
"testling": {
"files": "test/index.js",
"browsers": [
"iexplore/6.0..latest",
"firefox/3.0..6.0",
"firefox/15.0..latest",
"firefox/nightly",
"chrome/4.0..10.0",
"chrome/20.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"
]
},
"engines": {
"node": ">= 0.4"
}
}