Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/define-data-property/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "define-data-property", 3 "version": "1.1.4", 4 "description": "Define a data property on an object. Will fall back to assignment in an engine without descriptors.", 5 "main": "index.js", 6 "types": "./index.d.ts", 7 "exports": { 8 ".": "./index.js", 9 "./package.json": "./package.json" 10 }, 11 "sideEffects": false, 12 "scripts": { 13 "prepack": "npmignore --auto --commentLines=autogenerated", 14 "prepublish": "not-in-publish || npm run prepublishOnly", 15 "prepublishOnly": "safe-publish-latest", 16 "tsc": "tsc -p .", 17 "prelint": "evalmd README.md", 18 "lint": "eslint --ext=js,mjs .", 19 "postlint": "npm run tsc", 20 "pretest": "npm run lint", 21 "tests-only": "nyc tape 'test/**/*.js'", 22 "test": "npm run tests-only", 23 "posttest": "aud --production", 24 "version": "auto-changelog && git add CHANGELOG.md", 25 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" 26 }, 27 "repository": { 28 "type": "git", 29 "url": "git+https://github.com/ljharb/define-data-property.git" 30 }, 31 "keywords": [ 32 "define", 33 "data", 34 "property", 35 "object", 36 "accessor", 37 "javascript", 38 "ecmascript", 39 "enumerable", 40 "configurable", 41 "writable" 42 ], 43 "author": "Jordan Harband <ljharb@gmail.com>", 44 "funding": { 45 "url": "https://github.com/sponsors/ljharb" 46 }, 47 "license": "MIT", 48 "bugs": { 49 "url": "https://github.com/ljharb/define-data-property/issues" 50 }, 51 "homepage": "https://github.com/ljharb/define-data-property#readme", 52 "dependencies": { 53 "es-define-property": "^1.0.0", 54 "es-errors": "^1.3.0", 55 "gopd": "^1.0.1" 56 }, 57 "devDependencies": { 58 "@ljharb/eslint-config": "^21.1.0", 59 "@types/call-bind": "^1.0.5", 60 "@types/define-properties": "^1.1.5", 61 "@types/es-value-fixtures": "^1.4.4", 62 "@types/for-each": "^0.3.3", 63 "@types/get-intrinsic": "^1.2.2", 64 "@types/gopd": "^1.0.3", 65 "@types/has-property-descriptors": "^1.0.3", 66 "@types/object-inspect": "^1.8.4", 67 "@types/object.getownpropertydescriptors": "^2.1.4", 68 "@types/tape": "^5.6.4", 69 "aud": "^2.0.4", 70 "auto-changelog": "^2.4.0", 71 "es-value-fixtures": "^1.4.2", 72 "eslint": "=8.8.0", 73 "evalmd": "^0.0.19", 74 "for-each": "^0.3.3", 75 "hasown": "^2.0.1", 76 "in-publish": "^2.0.1", 77 "npmignore": "^0.3.1", 78 "nyc": "^10.3.2", 79 "object-inspect": "^1.13.1", 80 "object.getownpropertydescriptors": "^2.1.7", 81 "reflect.ownkeys": "^1.1.4", 82 "safe-publish-latest": "^2.0.0", 83 "tape": "^5.7.4", 84 "typescript": "next" 85 }, 86 "engines": { 87 "node": ">= 0.4" 88 }, 89 "testling": { 90 "files": "test/index.js" 91 }, 92 "auto-changelog": { 93 "output": "CHANGELOG.md", 94 "template": "keepachangelog", 95 "unreleased": false, 96 "commitLimit": false, 97 "backfillLimit": false, 98 "hideCredit": true 99 }, 100 "publishConfig": { 101 "ignore": [ 102 ".github/workflows", 103 "types/reflect.ownkeys" 104 ] 105 } 2 "_from": "define-data-property@^1.1.4", 3 "_id": "define-data-property@1.1.4", 4 "_inBundle": false, 5 "_integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", 6 "_location": "/define-data-property", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "define-data-property@^1.1.4", 12 "name": "define-data-property", 13 "escapedName": "define-data-property", 14 "rawSpec": "^1.1.4", 15 "saveSpec": null, 16 "fetchSpec": "^1.1.4" 17 }, 18 "_requiredBy": [ 19 "/define-properties", 20 "/iterator.prototype", 21 "/set-function-length", 22 "/set-function-name", 23 "/string.prototype.trim" 24 ], 25 "_resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", 26 "_shasum": "894dc141bb7d3060ae4366f6a0107e68fbe48c5e", 27 "_spec": "define-data-property@^1.1.4", 28 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/set-function-length", 29 "author": { 30 "name": "Jordan Harband", 31 "email": "ljharb@gmail.com" 32 }, 33 "auto-changelog": { 34 "output": "CHANGELOG.md", 35 "template": "keepachangelog", 36 "unreleased": false, 37 "commitLimit": false, 38 "backfillLimit": false, 39 "hideCredit": true 40 }, 41 "bugs": { 42 "url": "https://github.com/ljharb/define-data-property/issues" 43 }, 44 "bundleDependencies": false, 45 "dependencies": { 46 "es-define-property": "^1.0.0", 47 "es-errors": "^1.3.0", 48 "gopd": "^1.0.1" 49 }, 50 "deprecated": false, 51 "description": "Define a data property on an object. Will fall back to assignment in an engine without descriptors.", 52 "devDependencies": { 53 "@ljharb/eslint-config": "^21.1.0", 54 "@types/call-bind": "^1.0.5", 55 "@types/define-properties": "^1.1.5", 56 "@types/es-value-fixtures": "^1.4.4", 57 "@types/for-each": "^0.3.3", 58 "@types/get-intrinsic": "^1.2.2", 59 "@types/gopd": "^1.0.3", 60 "@types/has-property-descriptors": "^1.0.3", 61 "@types/object-inspect": "^1.8.4", 62 "@types/object.getownpropertydescriptors": "^2.1.4", 63 "@types/tape": "^5.6.4", 64 "aud": "^2.0.4", 65 "auto-changelog": "^2.4.0", 66 "es-value-fixtures": "^1.4.2", 67 "eslint": "=8.8.0", 68 "evalmd": "^0.0.19", 69 "for-each": "^0.3.3", 70 "hasown": "^2.0.1", 71 "in-publish": "^2.0.1", 72 "npmignore": "^0.3.1", 73 "nyc": "^10.3.2", 74 "object-inspect": "^1.13.1", 75 "object.getownpropertydescriptors": "^2.1.7", 76 "reflect.ownkeys": "^1.1.4", 77 "safe-publish-latest": "^2.0.0", 78 "tape": "^5.7.4", 79 "typescript": "next" 80 }, 81 "engines": { 82 "node": ">= 0.4" 83 }, 84 "exports": { 85 ".": "./index.js", 86 "./package.json": "./package.json" 87 }, 88 "funding": { 89 "url": "https://github.com/sponsors/ljharb" 90 }, 91 "homepage": "https://github.com/ljharb/define-data-property#readme", 92 "keywords": [ 93 "define", 94 "data", 95 "property", 96 "object", 97 "accessor", 98 "javascript", 99 "ecmascript", 100 "enumerable", 101 "configurable", 102 "writable" 103 ], 104 "license": "MIT", 105 "main": "index.js", 106 "name": "define-data-property", 107 "publishConfig": { 108 "ignore": [ 109 ".github/workflows", 110 "types/reflect.ownkeys" 111 ] 112 }, 113 "repository": { 114 "type": "git", 115 "url": "git+https://github.com/ljharb/define-data-property.git" 116 }, 117 "scripts": { 118 "lint": "eslint --ext=js,mjs .", 119 "postlint": "npm run tsc", 120 "posttest": "aud --production", 121 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 122 "prelint": "evalmd README.md", 123 "prepack": "npmignore --auto --commentLines=autogenerated", 124 "prepublish": "not-in-publish || npm run prepublishOnly", 125 "prepublishOnly": "safe-publish-latest", 126 "pretest": "npm run lint", 127 "test": "npm run tests-only", 128 "tests-only": "nyc tape 'test/**/*.js'", 129 "tsc": "tsc -p .", 130 "version": "auto-changelog && git add CHANGELOG.md" 131 }, 132 "sideEffects": false, 133 "testling": { 134 "files": "test/index.js" 135 }, 136 "types": "./index.d.ts", 137 "version": "1.1.4" 106 138 }
Note:
See TracChangeset
for help on using the changeset viewer.