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