Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/define-properties/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "define-properties", 3 "version": "1.2.1", 4 "author": "Jordan Harband <ljharb@gmail.com>", 5 "funding": { 6 "url": "https://github.com/sponsors/ljharb" 7 }, 8 "description": "Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines.", 9 "license": "MIT", 10 "main": "index.js", 11 "scripts": { 12 "prepack": "npmignore --auto --commentLines=autogenerated", 13 "prepublish": "not-in-publish || npm run prepublishOnly", 14 "prepublishOnly": "safe-publish-latest", 15 "pretest": "npm run lint", 16 "test": "npm run tests-only", 17 "posttest": "aud --production", 18 "tests-only": "nyc tape 'test/**/*.js'", 19 "lint": "eslint --ext=js,mjs .", 20 "version": "auto-changelog && git add CHANGELOG.md", 21 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" 22 }, 23 "repository": { 24 "type": "git", 25 "url": "git://github.com/ljharb/define-properties.git" 26 }, 27 "keywords": [ 28 "Object.defineProperty", 29 "Object.defineProperties", 30 "object", 31 "property descriptor", 32 "descriptor", 33 "define", 34 "ES5" 35 ], 36 "dependencies": { 37 "define-data-property": "^1.0.1", 38 "has-property-descriptors": "^1.0.0", 39 "object-keys": "^1.1.1" 40 }, 41 "devDependencies": { 42 "@ljharb/eslint-config": "^21.1.0", 43 "aud": "^2.0.3", 44 "auto-changelog": "^2.4.0", 45 "eslint": "=8.8.0", 46 "in-publish": "^2.0.1", 47 "npmignore": "^0.3.0", 48 "nyc": "^10.3.2", 49 "safe-publish-latest": "^2.0.0", 50 "tape": "^5.6.6" 51 }, 52 "testling": { 53 "files": "test/index.js", 54 "browsers": [ 55 "iexplore/6.0..latest", 56 "firefox/3.0..6.0", 57 "firefox/15.0..latest", 58 "firefox/nightly", 59 "chrome/4.0..10.0", 60 "chrome/20.0..latest", 61 "chrome/canary", 62 "opera/10.0..latest", 63 "opera/next", 64 "safari/4.0..latest", 65 "ipad/6.0..latest", 66 "iphone/6.0..latest", 67 "android-browser/4.2" 68 ] 69 }, 70 "engines": { 71 "node": ">= 0.4" 72 }, 73 "auto-changelog": { 74 "output": "CHANGELOG.md", 75 "template": "keepachangelog", 76 "unreleased": false, 77 "commitLimit": false, 78 "backfillLimit": false, 79 "hideCredit": true, 80 "startingVersion": "1.1.5" 81 }, 82 "publishConfig": { 83 "ignore": [ 84 ".github/workflows", 85 "test/" 86 ] 87 } 2 "_from": "define-properties@^1.2.1", 3 "_id": "define-properties@1.2.1", 4 "_inBundle": false, 5 "_integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", 6 "_location": "/define-properties", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "define-properties@^1.2.1", 12 "name": "define-properties", 13 "escapedName": "define-properties", 14 "rawSpec": "^1.2.1", 15 "saveSpec": null, 16 "fetchSpec": "^1.2.1" 17 }, 18 "_requiredBy": [ 19 "/array-includes", 20 "/array.prototype.findlast", 21 "/array.prototype.flat", 22 "/array.prototype.flatmap", 23 "/array.prototype.tosorted", 24 "/arraybuffer.prototype.slice", 25 "/es-iterator-helpers", 26 "/function.prototype.name", 27 "/globalthis", 28 "/object.assign", 29 "/object.entries", 30 "/object.fromentries", 31 "/object.values", 32 "/reflect.getprototypeof", 33 "/regexp.prototype.flags", 34 "/string.prototype.matchall", 35 "/string.prototype.repeat", 36 "/string.prototype.trim", 37 "/string.prototype.trimend", 38 "/string.prototype.trimstart" 39 ], 40 "_resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", 41 "_shasum": "10781cc616eb951a80a034bafcaa7377f6af2b6c", 42 "_spec": "define-properties@^1.2.1", 43 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/array-includes", 44 "author": { 45 "name": "Jordan Harband", 46 "email": "ljharb@gmail.com" 47 }, 48 "auto-changelog": { 49 "output": "CHANGELOG.md", 50 "template": "keepachangelog", 51 "unreleased": false, 52 "commitLimit": false, 53 "backfillLimit": false, 54 "hideCredit": true, 55 "startingVersion": "1.1.5" 56 }, 57 "bugs": { 58 "url": "https://github.com/ljharb/define-properties/issues" 59 }, 60 "bundleDependencies": false, 61 "dependencies": { 62 "define-data-property": "^1.0.1", 63 "has-property-descriptors": "^1.0.0", 64 "object-keys": "^1.1.1" 65 }, 66 "deprecated": false, 67 "description": "Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines.", 68 "devDependencies": { 69 "@ljharb/eslint-config": "^21.1.0", 70 "aud": "^2.0.3", 71 "auto-changelog": "^2.4.0", 72 "eslint": "=8.8.0", 73 "in-publish": "^2.0.1", 74 "npmignore": "^0.3.0", 75 "nyc": "^10.3.2", 76 "safe-publish-latest": "^2.0.0", 77 "tape": "^5.6.6" 78 }, 79 "engines": { 80 "node": ">= 0.4" 81 }, 82 "funding": { 83 "url": "https://github.com/sponsors/ljharb" 84 }, 85 "homepage": "https://github.com/ljharb/define-properties#readme", 86 "keywords": [ 87 "Object.defineProperty", 88 "Object.defineProperties", 89 "object", 90 "property descriptor", 91 "descriptor", 92 "define", 93 "ES5" 94 ], 95 "license": "MIT", 96 "main": "index.js", 97 "name": "define-properties", 98 "publishConfig": { 99 "ignore": [ 100 ".github/workflows", 101 "test/" 102 ] 103 }, 104 "repository": { 105 "type": "git", 106 "url": "git://github.com/ljharb/define-properties.git" 107 }, 108 "scripts": { 109 "lint": "eslint --ext=js,mjs .", 110 "posttest": "aud --production", 111 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 112 "prepack": "npmignore --auto --commentLines=autogenerated", 113 "prepublish": "not-in-publish || npm run prepublishOnly", 114 "prepublishOnly": "safe-publish-latest", 115 "pretest": "npm run lint", 116 "test": "npm run tests-only", 117 "tests-only": "nyc tape 'test/**/*.js'", 118 "version": "auto-changelog && git add CHANGELOG.md" 119 }, 120 "testling": { 121 "files": "test/index.js", 122 "browsers": [ 123 "iexplore/6.0..latest", 124 "firefox/3.0..6.0", 125 "firefox/15.0..latest", 126 "firefox/nightly", 127 "chrome/4.0..10.0", 128 "chrome/20.0..latest", 129 "chrome/canary", 130 "opera/10.0..latest", 131 "opera/next", 132 "safari/4.0..latest", 133 "ipad/6.0..latest", 134 "iphone/6.0..latest", 135 "android-browser/4.2" 136 ] 137 }, 138 "version": "1.2.1" 88 139 }
Note:
See TracChangeset
for help on using the changeset viewer.