1 | {
|
---|
2 | "name": "object.assign",
|
---|
3 | "version": "4.1.2",
|
---|
4 | "author": "Jordan Harband",
|
---|
5 | "funding": {
|
---|
6 | "url": "https://github.com/sponsors/ljharb"
|
---|
7 | },
|
---|
8 | "description": "ES6 spec-compliant Object.assign shim. From https://github.com/es-shims/es6-shim",
|
---|
9 | "license": "MIT",
|
---|
10 | "main": "index.js",
|
---|
11 | "scripts": {
|
---|
12 | "pretest": "npm run lint && es-shim-api --bound",
|
---|
13 | "test": "npm run tests-only && npm run test:ses",
|
---|
14 | "posttest": "aud --production",
|
---|
15 | "tests-only": "npm run test:implementation && npm run test:shim",
|
---|
16 | "test:native": "nyc node test/native",
|
---|
17 | "test:shim": "nyc node test/shimmed",
|
---|
18 | "test:implementation": "nyc node test",
|
---|
19 | "test:ses": "node test/ses-compat",
|
---|
20 | "lint": "eslint .",
|
---|
21 | "build": "mkdir -p dist && browserify browserShim.js > dist/browser.js",
|
---|
22 | "prepublish": "safe-publish-latest && npm run build"
|
---|
23 | },
|
---|
24 | "repository": {
|
---|
25 | "type": "git",
|
---|
26 | "url": "git://github.com/ljharb/object.assign.git"
|
---|
27 | },
|
---|
28 | "keywords": [
|
---|
29 | "Object.assign",
|
---|
30 | "assign",
|
---|
31 | "ES6",
|
---|
32 | "extend",
|
---|
33 | "$.extend",
|
---|
34 | "jQuery",
|
---|
35 | "_.extend",
|
---|
36 | "Underscore",
|
---|
37 | "es-shim API",
|
---|
38 | "polyfill",
|
---|
39 | "shim"
|
---|
40 | ],
|
---|
41 | "dependencies": {
|
---|
42 | "call-bind": "^1.0.0",
|
---|
43 | "define-properties": "^1.1.3",
|
---|
44 | "has-symbols": "^1.0.1",
|
---|
45 | "object-keys": "^1.1.1"
|
---|
46 | },
|
---|
47 | "devDependencies": {
|
---|
48 | "@es-shims/api": "^2.1.2",
|
---|
49 | "@ljharb/eslint-config": "^17.2.0",
|
---|
50 | "aud": "^1.1.2",
|
---|
51 | "browserify": "^16.5.2",
|
---|
52 | "eslint": "^7.12.1",
|
---|
53 | "for-each": "^0.3.3",
|
---|
54 | "functions-have-names": "^1.2.1",
|
---|
55 | "has": "^1.0.3",
|
---|
56 | "is": "^3.3.0",
|
---|
57 | "nyc": "^10.3.2",
|
---|
58 | "safe-publish-latest": "^1.1.4",
|
---|
59 | "ses": "^0.10.4",
|
---|
60 | "tape": "^5.0.1"
|
---|
61 | },
|
---|
62 | "testling": {
|
---|
63 | "files": "test/index.js",
|
---|
64 | "browsers": [
|
---|
65 | "iexplore/6.0..latest",
|
---|
66 | "firefox/3.0..6.0",
|
---|
67 | "firefox/15.0..latest",
|
---|
68 | "firefox/nightly",
|
---|
69 | "chrome/4.0..10.0",
|
---|
70 | "chrome/20.0..latest",
|
---|
71 | "chrome/canary",
|
---|
72 | "opera/10.0..latest",
|
---|
73 | "opera/next",
|
---|
74 | "safari/4.0..latest",
|
---|
75 | "ipad/6.0..latest",
|
---|
76 | "iphone/6.0..latest",
|
---|
77 | "android-browser/4.2"
|
---|
78 | ]
|
---|
79 | },
|
---|
80 | "engines": {
|
---|
81 | "node": ">= 0.4"
|
---|
82 | }
|
---|
83 | }
|
---|