[6a3a178] | 1 | {
|
---|
[59329aa] | 2 | "_args": [
|
---|
| 3 | [
|
---|
| 4 | "@jridgewell/resolve-uri@1.0.0",
|
---|
| 5 | "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
|
---|
| 6 | ]
|
---|
[6a3a178] | 7 | ],
|
---|
[59329aa] | 8 | "_development": true,
|
---|
| 9 | "_from": "@jridgewell/resolve-uri@1.0.0",
|
---|
| 10 | "_id": "@jridgewell/resolve-uri@1.0.0",
|
---|
| 11 | "_inBundle": false,
|
---|
| 12 | "_integrity": "sha512-9oLAnygRMi8Q5QkYEU4XWK04B+nuoXoxjRvRxgjuChkLZFBja0YPSgdZ7dZtwhncLBcQe/I/E+fLuk5qxcYVJA==",
|
---|
| 13 | "_location": "/@jridgewell/resolve-uri",
|
---|
| 14 | "_phantomChildren": {},
|
---|
| 15 | "_requested": {
|
---|
| 16 | "type": "version",
|
---|
| 17 | "registry": true,
|
---|
| 18 | "raw": "@jridgewell/resolve-uri@1.0.0",
|
---|
| 19 | "name": "@jridgewell/resolve-uri",
|
---|
| 20 | "escapedName": "@jridgewell%2fresolve-uri",
|
---|
| 21 | "scope": "@jridgewell",
|
---|
| 22 | "rawSpec": "1.0.0",
|
---|
| 23 | "saveSpec": null,
|
---|
| 24 | "fetchSpec": "1.0.0"
|
---|
| 25 | },
|
---|
| 26 | "_requiredBy": [
|
---|
| 27 | "/@ampproject/remapping"
|
---|
[6a3a178] | 28 | ],
|
---|
[59329aa] | 29 | "_resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-1.0.0.tgz",
|
---|
| 30 | "_spec": "1.0.0",
|
---|
| 31 | "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
|
---|
| 32 | "author": {
|
---|
| 33 | "name": "Justin Ridgewell",
|
---|
| 34 | "email": "jridgewell@google.com"
|
---|
[6a3a178] | 35 | },
|
---|
| 36 | "bugs": {
|
---|
| 37 | "url": "https://github.com/jridgewell/resolve-uri/issues"
|
---|
| 38 | },
|
---|
[59329aa] | 39 | "description": "Resolve a URI relative to an optional base URI",
|
---|
[6a3a178] | 40 | "devDependencies": {
|
---|
| 41 | "@types/jest": "24.0.15",
|
---|
| 42 | "@types/node": "12.6.2",
|
---|
| 43 | "jest": "24.8.0",
|
---|
| 44 | "jest-config": "24.8.0",
|
---|
| 45 | "npm-run-all": "4.1.5",
|
---|
| 46 | "prettier": "1.18.2",
|
---|
| 47 | "rollup": "1.16.7",
|
---|
| 48 | "rollup-plugin-commonjs": "10.0.1",
|
---|
| 49 | "rollup-plugin-node-resolve": "5.2.0",
|
---|
| 50 | "rollup-plugin-sourcemaps": "0.4.2",
|
---|
| 51 | "rollup-plugin-typescript": "1.0.1",
|
---|
| 52 | "ts-jest": "24.0.2",
|
---|
| 53 | "ts-node": "8.3.0",
|
---|
| 54 | "tslint": "5.18.0",
|
---|
| 55 | "tslint-config-prettier": "1.18.0",
|
---|
| 56 | "tslint-config-standard": "8.0.1",
|
---|
| 57 | "typescript": "3.5.3"
|
---|
[59329aa] | 58 | },
|
---|
| 59 | "engines": {
|
---|
| 60 | "node": ">=6.0.0"
|
---|
| 61 | },
|
---|
| 62 | "files": [
|
---|
| 63 | "dist"
|
---|
| 64 | ],
|
---|
| 65 | "homepage": "https://github.com/jridgewell/resolve-uri#readme",
|
---|
| 66 | "keywords": [
|
---|
| 67 | "resolve",
|
---|
| 68 | "uri",
|
---|
| 69 | "url",
|
---|
| 70 | "path"
|
---|
| 71 | ],
|
---|
| 72 | "license": "MIT",
|
---|
| 73 | "main": "dist/resolve-uri.umd.js",
|
---|
| 74 | "module": "dist/resolve-uri.mjs",
|
---|
| 75 | "name": "@jridgewell/resolve-uri",
|
---|
| 76 | "repository": {
|
---|
| 77 | "type": "git",
|
---|
| 78 | "url": "git+https://github.com/jridgewell/resolve-uri.git"
|
---|
| 79 | },
|
---|
| 80 | "scripts": {
|
---|
| 81 | "build": "run-s -n build:*",
|
---|
| 82 | "build:rollup": "rollup -c rollup.config.ts",
|
---|
| 83 | "build:ts": "tsc --module commonjs",
|
---|
| 84 | "lint": "run-s -n lint:*",
|
---|
| 85 | "lint:prettier": "npm run test:lint:prettier -- --write",
|
---|
| 86 | "lint:ts": "npm run test:lint:ts -- --fix",
|
---|
| 87 | "prebuild": "rm -rf dist",
|
---|
| 88 | "prepublishOnly": "npm run preversion",
|
---|
| 89 | "preversion": "run-s test:prod build",
|
---|
| 90 | "test": "jest --coverage",
|
---|
| 91 | "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
|
---|
| 92 | "test:lint": "run-s -n test:lint:*",
|
---|
| 93 | "test:lint:prettier": "prettier --check '{src,test}/**/*.ts'",
|
---|
| 94 | "test:lint:ts": "tslint --project tsconfig.json -t codeFrame '{src,test}/**/*.ts'",
|
---|
| 95 | "test:prod": "run-s -n test:lint 'test --no-cache'",
|
---|
| 96 | "test:watch": "jest --coverage --watch"
|
---|
| 97 | },
|
---|
| 98 | "typings": "dist/types/resolve-uri.d.ts",
|
---|
| 99 | "version": "1.0.0"
|
---|
[6a3a178] | 100 | }
|
---|