source: imaps-frontend/node_modules/object.assign/package.json@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 2.3 KB
RevLine 
[d565449]1{
2 "name": "object.assign",
3 "version": "4.1.5",
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 "prepack": "npmignore --auto --commentLines=autogenerated",
13 "pretest": "npm run lint && es-shim-api --bound",
14 "test": "npm run tests-only && npm run test:ses",
15 "posttest": "aud --production",
16 "tests-only": "npm run test:implementation && npm run test:shim",
17 "test:native": "nyc node test/native",
18 "test:shim": "nyc node test/shimmed",
19 "test:implementation": "nyc node test",
20 "test:ses": "node test/ses-compat",
21 "lint": "eslint .",
22 "build": "mkdir -p dist && browserify browserShim.js > dist/browser.js",
23 "prepublishOnly": "safe-publish-latest && npm run build",
24 "prepublish": "not-in-publish || npm run prepublishOnly"
25 },
26 "repository": {
27 "type": "git",
28 "url": "git://github.com/ljharb/object.assign.git"
29 },
30 "keywords": [
31 "Object.assign",
32 "assign",
33 "ES6",
34 "extend",
35 "$.extend",
36 "jQuery",
37 "_.extend",
38 "Underscore",
39 "es-shim API",
40 "polyfill",
41 "shim"
42 ],
43 "dependencies": {
44 "call-bind": "^1.0.5",
45 "define-properties": "^1.2.1",
46 "has-symbols": "^1.0.3",
47 "object-keys": "^1.1.1"
48 },
49 "devDependencies": {
50 "@es-shims/api": "^2.4.2",
51 "@ljharb/eslint-config": "^21.1.0",
52 "aud": "^2.0.3",
53 "browserify": "^16.5.2",
54 "eslint": "=8.8.0",
55 "for-each": "^0.3.3",
56 "functions-have-names": "^1.2.3",
57 "has-strict-mode": "^1.0.1",
58 "hasown": "^2.0.0",
59 "is": "^3.3.0",
60 "mock-property": "^1.0.3",
61 "npmignore": "^0.3.1",
62 "nyc": "^10.3.2",
63 "safe-publish-latest": "^2.0.0",
64 "ses": "^0.11.1",
65 "tape": "^5.7.2"
66 },
67 "testling": {
68 "files": "test/index.js",
69 "browsers": [
70 "iexplore/6.0..latest",
71 "firefox/3.0..6.0",
72 "firefox/15.0..latest",
73 "firefox/nightly",
74 "chrome/4.0..10.0",
75 "chrome/20.0..latest",
76 "chrome/canary",
77 "opera/10.0..latest",
78 "opera/next",
79 "safari/4.0..latest",
80 "ipad/6.0..latest",
81 "iphone/6.0..latest",
82 "android-browser/4.2"
83 ]
84 },
85 "engines": {
86 "node": ">= 0.4"
87 },
88 "publishConfig": {
89 "ignore": [
90 ".github/workflows",
91 "bower.json",
92 "browserShim.js",
93 "!dist/"
94 ]
95 }
96}
Note: See TracBrowser for help on using the repository browser.