Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/es-define-property/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "es-define-property", 3 "version": "1.0.0", 4 "description": "`Object.defineProperty`, but not IE 8's broken one.", 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 "prelint": "evalmd README.md", 17 "lint": "eslint --ext=js,mjs .", 18 "postlint": "tsc -p .", 19 "pretest": "npm run lint", 20 "tests-only": "nyc tape 'test/**/*.js'", 21 "test": "npm run tests-only", 22 "posttest": "aud --production", 23 "version": "auto-changelog && git add CHANGELOG.md", 24 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" 25 }, 26 "repository": { 27 "type": "git", 28 "url": "git+https://github.com/ljharb/es-define-property.git" 29 }, 30 "keywords": [ 31 "javascript", 32 "ecmascript", 33 "object", 34 "define", 35 "property", 36 "defineProperty", 37 "Object.defineProperty" 38 ], 39 "author": "Jordan Harband <ljharb@gmail.com>", 40 "license": "MIT", 41 "bugs": { 42 "url": "https://github.com/ljharb/es-define-property/issues" 43 }, 44 "homepage": "https://github.com/ljharb/es-define-property#readme", 45 "dependencies": { 46 "get-intrinsic": "^1.2.4" 47 }, 48 "devDependencies": { 49 "@ljharb/eslint-config": "^21.1.0", 50 "@types/get-intrinsic": "^1.2.2", 51 "@types/gopd": "^1.0.3", 52 "@types/tape": "^5.6.4", 53 "aud": "^2.0.4", 54 "auto-changelog": "^2.4.0", 55 "eslint": "^8.8.0", 56 "evalmd": "^0.0.19", 57 "gopd": "^1.0.1", 58 "in-publish": "^2.0.1", 59 "npmignore": "^0.3.1", 60 "nyc": "^10.3.2", 61 "safe-publish-latest": "^2.0.0", 62 "tape": "^5.7.4", 63 "typescript": "next" 64 }, 65 "engines": { 66 "node": ">= 0.4" 67 }, 68 "auto-changelog": { 69 "output": "CHANGELOG.md", 70 "template": "keepachangelog", 71 "unreleased": false, 72 "commitLimit": false, 73 "backfillLimit": false, 74 "hideCredit": true 75 }, 76 "publishConfig": { 77 "ignore": [ 78 ".github/workflows" 79 ] 80 } 2 "_from": "es-define-property@^1.0.0", 3 "_id": "es-define-property@1.0.1", 4 "_inBundle": false, 5 "_integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", 6 "_location": "/es-define-property", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "es-define-property@^1.0.0", 12 "name": "es-define-property", 13 "escapedName": "es-define-property", 14 "rawSpec": "^1.0.0", 15 "saveSpec": null, 16 "fetchSpec": "^1.0.0" 17 }, 18 "_requiredBy": [ 19 "/call-bind", 20 "/define-data-property", 21 "/es-abstract", 22 "/get-intrinsic", 23 "/has-property-descriptors" 24 ], 25 "_resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", 26 "_shasum": "983eb2f9a6724e9303f61addf011c72e09e0b0fa", 27 "_spec": "es-define-property@^1.0.0", 28 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/call-bind", 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/es-define-property/issues" 43 }, 44 "bundleDependencies": false, 45 "deprecated": false, 46 "description": "`Object.defineProperty`, but not IE 8's broken one.", 47 "devDependencies": { 48 "@ljharb/eslint-config": "^21.1.1", 49 "@ljharb/tsconfig": "^0.2.2", 50 "@types/gopd": "^1.0.3", 51 "@types/tape": "^5.6.5", 52 "auto-changelog": "^2.5.0", 53 "encoding": "^0.1.13", 54 "eslint": "^8.8.0", 55 "evalmd": "^0.0.19", 56 "gopd": "^1.2.0", 57 "in-publish": "^2.0.1", 58 "npmignore": "^0.3.1", 59 "nyc": "^10.3.2", 60 "safe-publish-latest": "^2.0.0", 61 "tape": "^5.9.0", 62 "typescript": "next" 63 }, 64 "engines": { 65 "node": ">= 0.4" 66 }, 67 "exports": { 68 ".": "./index.js", 69 "./package.json": "./package.json" 70 }, 71 "homepage": "https://github.com/ljharb/es-define-property#readme", 72 "keywords": [ 73 "javascript", 74 "ecmascript", 75 "object", 76 "define", 77 "property", 78 "defineProperty", 79 "Object.defineProperty" 80 ], 81 "license": "MIT", 82 "main": "index.js", 83 "name": "es-define-property", 84 "publishConfig": { 85 "ignore": [ 86 ".github/workflows" 87 ] 88 }, 89 "repository": { 90 "type": "git", 91 "url": "git+https://github.com/ljharb/es-define-property.git" 92 }, 93 "scripts": { 94 "lint": "eslint --ext=js,mjs .", 95 "postlint": "tsc -p .", 96 "posttest": "npx npm@'>= 10.2' audit --production", 97 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 98 "prelint": "evalmd README.md", 99 "prepack": "npmignore --auto --commentLines=autogenerated", 100 "prepublish": "not-in-publish || npm run prepublishOnly", 101 "prepublishOnly": "safe-publish-latest", 102 "pretest": "npm run lint", 103 "test": "npm run tests-only", 104 "tests-only": "nyc tape 'test/**/*.js'", 105 "version": "auto-changelog && git add CHANGELOG.md" 106 }, 107 "sideEffects": false, 108 "testling": { 109 "files": "test/index.js" 110 }, 111 "types": "./index.d.ts", 112 "version": "1.0.1" 81 113 }
Note:
See TracChangeset
for help on using the changeset viewer.