- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/inquirer/node_modules/rxjs/package.json
rceaed42 r59329aa 1 1 { 2 "name": "rxjs", 3 "version": "7.4.0", 4 "description": "Reactive Extensions for modern JavaScript", 5 "main": "./dist/cjs/index.js", 6 "module": "./dist/esm5/index.js", 7 "es2015": "./dist/esm/index.js", 8 "types": "index.d.ts", 9 "typesVersions": { 10 ">=4.2": { 11 "*": [ 12 "dist/types/*" 13 ] 14 } 15 }, 16 "sideEffects": false, 17 "exports": { 18 ".": { 19 "node": "./dist/cjs/index.js", 20 "es2015": "./dist/esm/index.js", 21 "default": "./dist/esm5/index.js" 22 }, 23 "./ajax": { 24 "node": "./dist/cjs/ajax/index.js", 25 "es2015": "./dist/esm/ajax/index.js", 26 "default": "./dist/esm5/ajax/index.js" 27 }, 28 "./fetch": { 29 "node": "./dist/cjs/fetch/index.js", 30 "es2015": "./dist/esm/fetch/index.js", 31 "default": "./dist/esm5/fetch/index.js" 32 }, 33 "./operators": { 34 "node": "./dist/cjs/operators/index.js", 35 "es2015": "./dist/esm/operators/index.js", 36 "default": "./dist/esm5/operators/index.js" 37 }, 38 "./testing": { 39 "node": "./dist/cjs/testing/index.js", 40 "es2015": "./dist/esm/testing/index.js", 41 "default": "./dist/esm5/testing/index.js" 42 }, 43 "./webSocket": { 44 "node": "./dist/cjs/webSocket/index.js", 45 "es2015": "./dist/esm/webSocket/index.js", 46 "default": "./dist/esm5/webSocket/index.js" 47 }, 48 "./internal/*": { 49 "node": "./dist/cjs/internal/*.js", 50 "es2015": "./dist/esm/internal/*.js", 51 "default": "./dist/esm5/internal/*.js" 52 }, 53 "./package.json": "./package.json" 2 "_args": [ 3 [ 4 "rxjs@7.4.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "rxjs@7.4.0", 10 "_id": "rxjs@7.4.0", 11 "_inBundle": false, 12 "_integrity": "sha512-7SQDi7xeTMCJpqViXh8gL/lebcwlp3d831F05+9B44A4B0WfsEwUQHR64gsH1kvJ+Ep/J9K2+n1hVl1CsGN23w==", 13 "_location": "/inquirer/rxjs", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "rxjs@7.4.0", 19 "name": "rxjs", 20 "escapedName": "rxjs", 21 "rawSpec": "7.4.0", 22 "saveSpec": null, 23 "fetchSpec": "7.4.0" 24 }, 25 "_requiredBy": [ 26 "/inquirer" 27 ], 28 "_resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.4.0.tgz", 29 "_spec": "7.4.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "Ben Lesh", 33 "email": "ben@benlesh.com" 34 }, 35 "bugs": { 36 "url": "https://github.com/ReactiveX/RxJS/issues" 54 37 }, 55 38 "config": { … … 58 41 } 59 42 }, 60 "lint-staged": {61 "*.js": "eslint --cache --fix",62 "(src|spec)/**/*.ts": [63 "tslint --fix",64 "prettier --write"65 ],66 "*.{js,css,md}": "prettier --write"67 },68 "scripts": {69 "changelog": "npx conventional-changelog-cli -p angular -i CHANGELOG.md -s",70 "build:spec:browser": "echo \"Browser test is not working currently\" && exit -1 && webpack --config spec/support/webpack.mocha.config.js",71 "lint_spec": "tslint -c spec/tslint.json -p spec/tsconfig.json \"spec/**/*.ts\"",72 "lint_src": "tslint -c tslint.json -p src/tsconfig.base.json \"src/**/*.ts\"",73 "lint": "npm-run-all --parallel lint_*",74 "dtslint": "tsc -b ./src/tsconfig.types.json && tslint -c spec-dtslint/tslint.json -p spec-dtslint/tsconfig.json \"spec-dtslint/**/*.ts\"",75 "prepublishOnly": "npm run build:package && npm run lint && npm run test && npm run test:circular && npm run dtslint && npm run test:side-effects && npm run api_guardian",76 "publish_docs": "./publish_docs.sh",77 "test": "npm run compile && mocha --config spec/support/.mocharc.js \"dist/spec/**/*-spec.js\"",78 "test:esm": "node spec/module-test-spec.mjs",79 "test:browser": "echo \"Browser test is not working currently\" && exit -1 && npm-run-all build:spec:browser && opn spec/support/mocha-browser-runner.html",80 "test:circular": "dependency-cruiser --validate .dependency-cruiser.json -x \"^node_modules\" dist/esm5",81 "test:systemjs": "node integration/systemjs/systemjs-compatibility-spec.js",82 "test:side-effects": "check-side-effects --test integration/side-effects/side-effects.json",83 "test:side-effects:update": "npm run test:side-effects -- --update",84 "test:import": "ts-node ./integration/import/runner.ts",85 "compile": "tsc -b ./src/tsconfig.cjs.json ./src/tsconfig.cjs.spec.json ./src/tsconfig.esm.json ./src/tsconfig.esm5.json ./src/tsconfig.esm5.rollup.json ./src/tsconfig.types.json ./src/tsconfig.types.spec.json ./spec/tsconfig.json",86 "build:clean": "shx rm -rf ./dist",87 "build:global": "node ./tools/make-umd-bundle.js && node ./tools/make-closure-core.js",88 "build:package": "npm-run-all build:clean compile build:global && node ./tools/prepare-package.js && node ./tools/generate-alias.js",89 "api_guardian:update": "tsc -b ./src/tsconfig.types.json && ts-api-guardian --outDir api_guard dist/types/index.d.ts dist/types/ajax/index.d.ts dist/types/fetch/index.d.ts dist/types/operators/index.d.ts dist/types/testing/index.d.ts dist/types/webSocket/index.d.ts",90 "api_guardian": "ts-api-guardian --verifyDir api_guard dist/types/index.d.ts dist/types/ajax/index.d.ts dist/types/fetch/index.d.ts dist/types/operators/index.d.ts dist/types/testing/index.d.ts dist/types/webSocket/index.d.ts",91 "watch": "nodemon -w \"src/\" -w \"spec/\" -e ts -x npm test",92 "watch:dtslint": "nodemon -w \"src/\" -w \"spec-dtslint/\" -e ts -x npm run dtslint"93 },94 "repository": {95 "type": "git",96 "url": "https://github.com/reactivex/rxjs.git"97 },98 "keywords": [99 "Rx",100 "RxJS",101 "ReactiveX",102 "ReactiveExtensions",103 "Streams",104 "Observables",105 "Observable",106 "Stream",107 "ES6",108 "ES2015"109 ],110 "author": "Ben Lesh <ben@benlesh.com>",111 43 "contributors": [ 112 44 { … … 135 67 } 136 68 ], 137 "license": "Apache-2.0",138 "bugs": {139 "url": "https://github.com/ReactiveX/RxJS/issues"140 },141 "homepage": "https://rxjs.dev",142 69 "dependencies": { 143 70 "tslib": "~2.1.0" 144 71 }, 72 "description": "Reactive Extensions for modern JavaScript", 145 73 "devDependencies": { 146 74 "@angular-devkit/build-optimizer": "0.4.6", … … 207 135 "webpack": "^4.31.0" 208 136 }, 137 "es2015": "./dist/esm/index.js", 138 "exports": { 139 ".": { 140 "node": "./dist/cjs/index.js", 141 "es2015": "./dist/esm/index.js", 142 "default": "./dist/esm5/index.js" 143 }, 144 "./ajax": { 145 "node": "./dist/cjs/ajax/index.js", 146 "es2015": "./dist/esm/ajax/index.js", 147 "default": "./dist/esm5/ajax/index.js" 148 }, 149 "./fetch": { 150 "node": "./dist/cjs/fetch/index.js", 151 "es2015": "./dist/esm/fetch/index.js", 152 "default": "./dist/esm5/fetch/index.js" 153 }, 154 "./operators": { 155 "node": "./dist/cjs/operators/index.js", 156 "es2015": "./dist/esm/operators/index.js", 157 "default": "./dist/esm5/operators/index.js" 158 }, 159 "./testing": { 160 "node": "./dist/cjs/testing/index.js", 161 "es2015": "./dist/esm/testing/index.js", 162 "default": "./dist/esm5/testing/index.js" 163 }, 164 "./webSocket": { 165 "node": "./dist/cjs/webSocket/index.js", 166 "es2015": "./dist/esm/webSocket/index.js", 167 "default": "./dist/esm5/webSocket/index.js" 168 }, 169 "./internal/*": { 170 "node": "./dist/cjs/internal/*.js", 171 "es2015": "./dist/esm/internal/*.js", 172 "default": "./dist/esm5/internal/*.js" 173 }, 174 "./package.json": "./package.json" 175 }, 209 176 "files": [ 210 177 "dist/bundles", … … 226 193 "tsconfig.json" 227 194 ], 195 "homepage": "https://rxjs.dev", 228 196 "husky": { 229 197 "hooks": { … … 231 199 "commit-msg": "validate-commit-msg" 232 200 } 233 } 201 }, 202 "keywords": [ 203 "Rx", 204 "RxJS", 205 "ReactiveX", 206 "ReactiveExtensions", 207 "Streams", 208 "Observables", 209 "Observable", 210 "Stream", 211 "ES6", 212 "ES2015" 213 ], 214 "license": "Apache-2.0", 215 "lint-staged": { 216 "*.js": "eslint --cache --fix", 217 "(src|spec)/**/*.ts": [ 218 "tslint --fix", 219 "prettier --write" 220 ], 221 "*.{js,css,md}": "prettier --write" 222 }, 223 "main": "./dist/cjs/index.js", 224 "module": "./dist/esm5/index.js", 225 "name": "rxjs", 226 "repository": { 227 "type": "git", 228 "url": "git+https://github.com/reactivex/rxjs.git" 229 }, 230 "scripts": { 231 "api_guardian": "ts-api-guardian --verifyDir api_guard dist/types/index.d.ts dist/types/ajax/index.d.ts dist/types/fetch/index.d.ts dist/types/operators/index.d.ts dist/types/testing/index.d.ts dist/types/webSocket/index.d.ts", 232 "api_guardian:update": "tsc -b ./src/tsconfig.types.json && ts-api-guardian --outDir api_guard dist/types/index.d.ts dist/types/ajax/index.d.ts dist/types/fetch/index.d.ts dist/types/operators/index.d.ts dist/types/testing/index.d.ts dist/types/webSocket/index.d.ts", 233 "build:clean": "shx rm -rf ./dist", 234 "build:global": "node ./tools/make-umd-bundle.js && node ./tools/make-closure-core.js", 235 "build:package": "npm-run-all build:clean compile build:global && node ./tools/prepare-package.js && node ./tools/generate-alias.js", 236 "build:spec:browser": "echo \"Browser test is not working currently\" && exit -1 && webpack --config spec/support/webpack.mocha.config.js", 237 "changelog": "npx conventional-changelog-cli -p angular -i CHANGELOG.md -s", 238 "compile": "tsc -b ./src/tsconfig.cjs.json ./src/tsconfig.cjs.spec.json ./src/tsconfig.esm.json ./src/tsconfig.esm5.json ./src/tsconfig.esm5.rollup.json ./src/tsconfig.types.json ./src/tsconfig.types.spec.json ./spec/tsconfig.json", 239 "dtslint": "tsc -b ./src/tsconfig.types.json && tslint -c spec-dtslint/tslint.json -p spec-dtslint/tsconfig.json \"spec-dtslint/**/*.ts\"", 240 "lint": "npm-run-all --parallel lint_*", 241 "lint_spec": "tslint -c spec/tslint.json -p spec/tsconfig.json \"spec/**/*.ts\"", 242 "lint_src": "tslint -c tslint.json -p src/tsconfig.base.json \"src/**/*.ts\"", 243 "prepublishOnly": "npm run build:package && npm run lint && npm run test && npm run test:circular && npm run dtslint && npm run test:side-effects && npm run api_guardian", 244 "publish_docs": "./publish_docs.sh", 245 "test": "npm run compile && mocha --config spec/support/.mocharc.js \"dist/spec/**/*-spec.js\"", 246 "test:browser": "echo \"Browser test is not working currently\" && exit -1 && npm-run-all build:spec:browser && opn spec/support/mocha-browser-runner.html", 247 "test:circular": "dependency-cruiser --validate .dependency-cruiser.json -x \"^node_modules\" dist/esm5", 248 "test:esm": "node spec/module-test-spec.mjs", 249 "test:import": "ts-node ./integration/import/runner.ts", 250 "test:side-effects": "check-side-effects --test integration/side-effects/side-effects.json", 251 "test:side-effects:update": "npm run test:side-effects -- --update", 252 "test:systemjs": "node integration/systemjs/systemjs-compatibility-spec.js", 253 "watch": "nodemon -w \"src/\" -w \"spec/\" -e ts -x npm test", 254 "watch:dtslint": "nodemon -w \"src/\" -w \"spec-dtslint/\" -e ts -x npm run dtslint" 255 }, 256 "sideEffects": false, 257 "types": "index.d.ts", 258 "typesVersions": { 259 ">=4.2": { 260 "*": [ 261 "dist/types/*" 262 ] 263 } 264 }, 265 "version": "7.4.0" 234 266 }
Note:
See TracChangeset
for help on using the changeset viewer.