1
|
{
|
2
|
"name": "object.assign",
|
3
|
"version": "4.1.0",
|
4
|
"author": "Jordan Harband",
|
5
|
"description": "ES6 spec-compliant Object.assign shim. From https://github.com/es-shims/es6-shim",
|
6
|
"license": "MIT",
|
7
|
"main": "index.js",
|
8
|
"scripts": {
|
9
|
"pretest": "npm run --silent lint && es-shim-api",
|
10
|
"test": "npm run --silent tests-only",
|
11
|
"posttest": "npm run --silent security",
|
12
|
"tests-only": "npm run --silent test:implementation && npm run --silent test:shim",
|
13
|
"test:native": "node test/native.js",
|
14
|
"test:shim": "node test/shimmed.js",
|
15
|
"test:implementation": "node test/index.js",
|
16
|
"coverage": "covert test/*.js",
|
17
|
"coverage:quiet": "covert test/*.js --quiet",
|
18
|
"lint": "npm run --silent jscs && npm run --silent eslint",
|
19
|
"eslint": "eslint *.js test/*.js",
|
20
|
"jscs": "jscs *.js test/*.js",
|
21
|
"build": "mkdir -p dist && browserify browserShim.js > dist/browser.js",
|
22
|
"prepublish": "npm run --silent build",
|
23
|
"security": "nsp check"
|
24
|
},
|
25
|
"repository": {
|
26
|
"type": "git",
|
27
|
"url": "git://github.com/ljharb/object.assign.git"
|
28
|
},
|
29
|
"keywords": [
|
30
|
"Object.assign",
|
31
|
"assign",
|
32
|
"ES6",
|
33
|
"extend",
|
34
|
"$.extend",
|
35
|
"jQuery",
|
36
|
"_.extend",
|
37
|
"Underscore",
|
38
|
"es-shim API",
|
39
|
"polyfill",
|
40
|
"shim"
|
41
|
],
|
42
|
"dependencies": {
|
43
|
"define-properties": "^1.1.2",
|
44
|
"function-bind": "^1.1.1",
|
45
|
"has-symbols": "^1.0.0",
|
46
|
"object-keys": "^1.0.11"
|
47
|
},
|
48
|
"devDependencies": {
|
49
|
"@es-shims/api": "^2.1.1",
|
50
|
"@ljharb/eslint-config": "^12.2.1",
|
51
|
"browserify": "^14.5.0",
|
52
|
"covert": "^1.1.0",
|
53
|
"eslint": "^4.13.1",
|
54
|
"for-each": "^0.3.2",
|
55
|
"is": "^3.2.1",
|
56
|
"jscs": "^3.0.7",
|
57
|
"nsp": "^3.1.0",
|
58
|
"tape": "^4.8.0"
|
59
|
},
|
60
|
"testling": {
|
61
|
"files": "test/index.js",
|
62
|
"browsers": [
|
63
|
"iexplore/6.0..latest",
|
64
|
"firefox/3.0..6.0",
|
65
|
"firefox/15.0..latest",
|
66
|
"firefox/nightly",
|
67
|
"chrome/4.0..10.0",
|
68
|
"chrome/20.0..latest",
|
69
|
"chrome/canary",
|
70
|
"opera/10.0..latest",
|
71
|
"opera/next",
|
72
|
"safari/4.0..latest",
|
73
|
"ipad/6.0..latest",
|
74
|
"iphone/6.0..latest",
|
75
|
"android-browser/4.2"
|
76
|
]
|
77
|
},
|
78
|
"engines": {
|
79
|
"node": ">= 0.4"
|
80
|
}
|
81
|
}
|