Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/@jridgewell/gen-mapping/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "@jridgewell/gen-mapping", 3 "version": "0.3.5", 2 "_from": "@jridgewell/gen-mapping@^0.3.5", 3 "_id": "@jridgewell/gen-mapping@0.3.8", 4 "_inBundle": false, 5 "_integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", 6 "_location": "/@jridgewell/gen-mapping", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "@jridgewell/gen-mapping@^0.3.5", 12 "name": "@jridgewell/gen-mapping", 13 "escapedName": "@jridgewell%2fgen-mapping", 14 "scope": "@jridgewell", 15 "rawSpec": "^0.3.5", 16 "saveSpec": null, 17 "fetchSpec": "^0.3.5" 18 }, 19 "_requiredBy": [ 20 "/@ampproject/remapping", 21 "/@babel/generator" 22 ], 23 "_resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", 24 "_shasum": "4f0e06362e01362f823d348f1872b08f666d8142", 25 "_spec": "@jridgewell/gen-mapping@^0.3.5", 26 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/@ampproject/remapping", 27 "author": { 28 "name": "Justin Ridgewell", 29 "email": "justin@ridgewell.name" 30 }, 31 "bugs": { 32 "url": "https://github.com/jridgewell/gen-mapping/issues" 33 }, 34 "bundleDependencies": false, 35 "dependencies": { 36 "@jridgewell/set-array": "^1.2.1", 37 "@jridgewell/sourcemap-codec": "^1.4.10", 38 "@jridgewell/trace-mapping": "^0.3.24" 39 }, 40 "deprecated": false, 4 41 "description": "Generate source maps", 5 "keywords": [6 "source",7 "map"8 ],9 "author": "Justin Ridgewell <justin@ridgewell.name>",10 "license": "MIT",11 "repository": "https://github.com/jridgewell/gen-mapping",12 "main": "dist/gen-mapping.umd.js",13 "module": "dist/gen-mapping.mjs",14 "types": "dist/types/gen-mapping.d.ts",15 "exports": {16 ".": [17 {18 "types": "./dist/types/gen-mapping.d.ts",19 "browser": "./dist/gen-mapping.umd.js",20 "require": "./dist/gen-mapping.umd.js",21 "import": "./dist/gen-mapping.mjs"22 },23 "./dist/gen-mapping.umd.js"24 ],25 "./package.json": "./package.json"26 },27 "files": [28 "dist"29 ],30 "engines": {31 "node": ">=6.0.0"32 },33 "scripts": {34 "benchmark": "run-s build:rollup benchmark:*",35 "benchmark:install": "cd benchmark && npm install",36 "benchmark:only": "node benchmark/index.mjs",37 "prebuild": "rm -rf dist",38 "build": "run-s -n build:*",39 "build:rollup": "rollup -c rollup.config.js",40 "build:ts": "tsc --project tsconfig.build.json",41 "lint": "run-s -n lint:*",42 "lint:prettier": "npm run test:lint:prettier -- --write",43 "lint:ts": "npm run test:lint:ts -- --fix",44 "test": "run-s -n test:lint test:only",45 "test:debug": "mocha --inspect-brk",46 "test:lint": "run-s -n test:lint:*",47 "test:lint:prettier": "prettier --check '{src,test}/**/*.ts'",48 "test:lint:ts": "eslint '{src,test}/**/*.ts'",49 "test:only": "c8 mocha",50 "test:watch": "mocha --watch",51 "prepublishOnly": "npm run preversion",52 "preversion": "run-s test build"53 },54 42 "devDependencies": { 55 43 "@rollup/plugin-typescript": "8.3.2", … … 69 57 "typescript": "4.6.3" 70 58 }, 71 "dependencies": { 72 "@jridgewell/set-array": "^1.2.1", 73 "@jridgewell/sourcemap-codec": "^1.4.10", 74 "@jridgewell/trace-mapping": "^0.3.24" 75 } 59 "engines": { 60 "node": ">=6.0.0" 61 }, 62 "exports": { 63 ".": [ 64 { 65 "types": "./dist/types/gen-mapping.d.ts", 66 "browser": "./dist/gen-mapping.umd.js", 67 "require": "./dist/gen-mapping.umd.js", 68 "import": "./dist/gen-mapping.mjs" 69 }, 70 "./dist/gen-mapping.umd.js" 71 ], 72 "./package.json": "./package.json" 73 }, 74 "files": [ 75 "dist" 76 ], 77 "homepage": "https://github.com/jridgewell/gen-mapping#readme", 78 "keywords": [ 79 "source", 80 "map" 81 ], 82 "license": "MIT", 83 "main": "dist/gen-mapping.umd.js", 84 "module": "dist/gen-mapping.mjs", 85 "name": "@jridgewell/gen-mapping", 86 "repository": { 87 "type": "git", 88 "url": "git+https://github.com/jridgewell/gen-mapping.git" 89 }, 90 "scripts": { 91 "benchmark": "run-s build:rollup benchmark:*", 92 "benchmark:install": "cd benchmark && npm install", 93 "benchmark:only": "node benchmark/index.mjs", 94 "build": "run-s -n build:*", 95 "build:rollup": "rollup -c rollup.config.js", 96 "build:ts": "tsc --project tsconfig.build.json", 97 "lint": "run-s -n lint:*", 98 "lint:prettier": "npm run test:lint:prettier -- --write", 99 "lint:ts": "npm run test:lint:ts -- --fix", 100 "prebuild": "rm -rf dist", 101 "prepublishOnly": "npm run preversion", 102 "preversion": "run-s test build", 103 "test": "run-s -n test:lint test:only", 104 "test:debug": "mocha --inspect-brk", 105 "test:lint": "run-s -n test:lint:*", 106 "test:lint:prettier": "prettier --check '{src,test}/**/*.ts'", 107 "test:lint:ts": "eslint '{src,test}/**/*.ts'", 108 "test:only": "c8 mocha", 109 "test:watch": "mocha --watch" 110 }, 111 "types": "dist/types/gen-mapping.d.ts", 112 "version": "0.3.8" 76 113 }
Note:
See TracChangeset
for help on using the changeset viewer.