1 | {
|
---|
2 | "_from": "@jridgewell/trace-mapping@^0.3.24",
|
---|
3 | "_id": "@jridgewell/trace-mapping@0.3.25",
|
---|
4 | "_inBundle": false,
|
---|
5 | "_integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
|
---|
6 | "_location": "/@jridgewell/trace-mapping",
|
---|
7 | "_phantomChildren": {},
|
---|
8 | "_requested": {
|
---|
9 | "type": "range",
|
---|
10 | "registry": true,
|
---|
11 | "raw": "@jridgewell/trace-mapping@^0.3.24",
|
---|
12 | "name": "@jridgewell/trace-mapping",
|
---|
13 | "escapedName": "@jridgewell%2ftrace-mapping",
|
---|
14 | "scope": "@jridgewell",
|
---|
15 | "rawSpec": "^0.3.24",
|
---|
16 | "saveSpec": null,
|
---|
17 | "fetchSpec": "^0.3.24"
|
---|
18 | },
|
---|
19 | "_requiredBy": [
|
---|
20 | "/@ampproject/remapping",
|
---|
21 | "/@babel/generator",
|
---|
22 | "/@jridgewell/gen-mapping"
|
---|
23 | ],
|
---|
24 | "_resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
|
---|
25 | "_shasum": "15f190e98895f3fc23276ee14bc76b675c2e50f0",
|
---|
26 | "_spec": "@jridgewell/trace-mapping@^0.3.24",
|
---|
27 | "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/@ampproject/remapping",
|
---|
28 | "author": {
|
---|
29 | "name": "Justin Ridgewell",
|
---|
30 | "email": "justin@ridgewell.name"
|
---|
31 | },
|
---|
32 | "bugs": {
|
---|
33 | "url": "https://github.com/jridgewell/trace-mapping/issues"
|
---|
34 | },
|
---|
35 | "bundleDependencies": false,
|
---|
36 | "dependencies": {
|
---|
37 | "@jridgewell/resolve-uri": "^3.1.0",
|
---|
38 | "@jridgewell/sourcemap-codec": "^1.4.14"
|
---|
39 | },
|
---|
40 | "deprecated": false,
|
---|
41 | "description": "Trace the original position through a source map",
|
---|
42 | "devDependencies": {
|
---|
43 | "@rollup/plugin-typescript": "11.1.6",
|
---|
44 | "@types/mocha": "10.0.6",
|
---|
45 | "@types/node": "20.11.20",
|
---|
46 | "@typescript-eslint/eslint-plugin": "6.18.1",
|
---|
47 | "@typescript-eslint/parser": "6.18.1",
|
---|
48 | "benchmark": "2.1.4",
|
---|
49 | "c8": "9.0.0",
|
---|
50 | "esbuild": "0.19.11",
|
---|
51 | "eslint": "8.56.0",
|
---|
52 | "eslint-config-prettier": "9.1.0",
|
---|
53 | "eslint-plugin-no-only-tests": "3.1.0",
|
---|
54 | "mocha": "10.3.0",
|
---|
55 | "npm-run-all": "4.1.5",
|
---|
56 | "prettier": "3.1.1",
|
---|
57 | "rollup": "4.9.4",
|
---|
58 | "tsx": "4.7.0",
|
---|
59 | "typescript": "5.3.3"
|
---|
60 | },
|
---|
61 | "exports": {
|
---|
62 | ".": [
|
---|
63 | {
|
---|
64 | "types": "./dist/types/trace-mapping.d.ts",
|
---|
65 | "browser": "./dist/trace-mapping.umd.js",
|
---|
66 | "require": "./dist/trace-mapping.umd.js",
|
---|
67 | "import": "./dist/trace-mapping.mjs"
|
---|
68 | },
|
---|
69 | "./dist/trace-mapping.umd.js"
|
---|
70 | ],
|
---|
71 | "./package.json": "./package.json"
|
---|
72 | },
|
---|
73 | "files": [
|
---|
74 | "dist"
|
---|
75 | ],
|
---|
76 | "homepage": "https://github.com/jridgewell/trace-mapping#readme",
|
---|
77 | "keywords": [
|
---|
78 | "source",
|
---|
79 | "map"
|
---|
80 | ],
|
---|
81 | "license": "MIT",
|
---|
82 | "main": "dist/trace-mapping.umd.js",
|
---|
83 | "module": "dist/trace-mapping.mjs",
|
---|
84 | "name": "@jridgewell/trace-mapping",
|
---|
85 | "repository": {
|
---|
86 | "type": "git",
|
---|
87 | "url": "git+https://github.com/jridgewell/trace-mapping.git"
|
---|
88 | },
|
---|
89 | "scripts": {
|
---|
90 | "benchmark": "run-s build:rollup benchmark:*",
|
---|
91 | "benchmark:install": "cd benchmark && npm install",
|
---|
92 | "benchmark:only": "node --expose-gc benchmark/index.mjs",
|
---|
93 | "build": "run-s -n build:*",
|
---|
94 | "build:rollup": "rollup -c rollup.config.mjs",
|
---|
95 | "build:ts": "tsc --project tsconfig.build.json",
|
---|
96 | "lint": "run-s -n lint:*",
|
---|
97 | "lint:prettier": "npm run test:lint:prettier -- --write",
|
---|
98 | "lint:ts": "npm run test:lint:ts -- --fix",
|
---|
99 | "prebuild": "rm -rf dist",
|
---|
100 | "prepublishOnly": "npm run preversion",
|
---|
101 | "preversion": "run-s test build",
|
---|
102 | "test": "run-s -n test:lint test:only",
|
---|
103 | "test:debug": "mocha --inspect-brk",
|
---|
104 | "test:lint": "run-s -n test:lint:*",
|
---|
105 | "test:lint:prettier": "prettier --check '{src,test}/**/*.ts' '**/*.md'",
|
---|
106 | "test:lint:ts": "eslint '{src,test}/**/*.ts'",
|
---|
107 | "test:only": "c8 mocha",
|
---|
108 | "test:watch": "mocha --watch"
|
---|
109 | },
|
---|
110 | "types": "dist/types/trace-mapping.d.ts",
|
---|
111 | "version": "0.3.25"
|
---|
112 | }
|
---|