- Timestamp:
- 11/25/21 22:08:24 (3 years ago)
- Branches:
- master
- Children:
- 8d391a1
- Parents:
- 59329aa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/yargs-parser/package.json
r59329aa re29cc2e 1 1 { 2 "_args": [ 3 [ 4 "yargs-parser@20.2.9", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "yargs-parser@20.2.9", 10 "_id": "yargs-parser@20.2.9", 2 "_from": "yargs-parser@^13.1.2", 3 "_id": "yargs-parser@13.1.2", 11 4 "_inBundle": false, 12 "_integrity": "sha512- y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",5 "_integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", 13 6 "_location": "/yargs-parser", 14 7 "_phantomChildren": {}, 15 8 "_requested": { 16 "type": " version",9 "type": "range", 17 10 "registry": true, 18 "raw": "yargs-parser@ 20.2.9",11 "raw": "yargs-parser@^13.1.2", 19 12 "name": "yargs-parser", 20 13 "escapedName": "yargs-parser", 21 "rawSpec": " 20.2.9",14 "rawSpec": "^13.1.2", 22 15 "saveSpec": null, 23 "fetchSpec": " 20.2.9"16 "fetchSpec": "^13.1.2" 24 17 }, 25 18 "_requiredBy": [ 26 "/karma/yargs",27 19 "/yargs" 28 20 ], 29 "_resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", 30 "_spec": "20.2.9", 31 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 21 "_resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", 22 "_shasum": "130f09702ebaeef2650d54ce6e3e5706f7a4fb38", 23 "_spec": "yargs-parser@^13.1.2", 24 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front\\node_modules\\yargs", 32 25 "author": { 33 26 "name": "Ben Coe", … … 37 30 "url": "https://github.com/yargs/yargs-parser/issues" 38 31 }, 32 "bundleDependencies": false, 33 "dependencies": { 34 "camelcase": "^5.0.0", 35 "decamelize": "^1.2.0" 36 }, 37 "deprecated": false, 39 38 "description": "the mighty option parser used by yargs", 40 39 "devDependencies": { 41 "@types/chai": "^4.2.11",42 "@types/mocha": "^8.0.0",43 "@types/node": "^14.0.0",44 "@typescript-eslint/eslint-plugin": "^3.10.1",45 "@typescript-eslint/parser": "^3.10.1",46 "@wessberg/rollup-plugin-ts": "^1.2.28",47 "c8": "^7.3.0",48 40 "chai": "^4.2.0", 49 "cross-env": "^7.0.2", 50 "eslint": "^7.0.0", 51 "eslint-plugin-import": "^2.20.1", 52 "eslint-plugin-node": "^11.0.0", 53 "gts": "^3.0.0", 54 "mocha": "^9.0.0", 55 "puppeteer": "^10.0.0", 56 "rimraf": "^3.0.2", 57 "rollup": "^2.22.1", 58 "rollup-plugin-cleanup": "^3.1.1", 59 "serve": "^12.0.0", 60 "standardx": "^7.0.0", 61 "start-server-and-test": "^1.11.2", 62 "ts-transform-default-export": "^1.0.2", 63 "typescript": "^4.0.0" 41 "coveralls": "^3.0.2", 42 "mocha": "^5.2.0", 43 "nyc": "^14.1.0", 44 "standard": "^12.0.1", 45 "standard-version": "^6.0.0" 64 46 }, 65 "engines": { 66 "node": ">=10" 67 }, 68 "exports": { 69 ".": [ 70 { 71 "import": "./build/lib/index.js", 72 "require": "./build/index.cjs" 73 }, 74 "./build/index.cjs" 75 ] 47 "engine": { 48 "node": ">=6" 76 49 }, 77 50 "files": [ 78 "browser.js", 79 "build", 80 "!*.d.ts" 51 "lib", 52 "index.js" 81 53 ], 82 54 "homepage": "https://github.com/yargs/yargs-parser#readme", … … 93 65 ], 94 66 "license": "ISC", 95 "main": "build/index.cjs", 96 "module": "./build/lib/index.js", 67 "main": "index.js", 97 68 "name": "yargs-parser", 98 69 "repository": { 99 "type": "git", 100 "url": "git+https://github.com/yargs/yargs-parser.git" 70 "url": "git+ssh://git@github.com/yargs/yargs-parser.git" 101 71 }, 102 72 "scripts": { 103 "build:cjs": "rollup -c", 104 "check": "standardx '**/*.ts' && standardx '**/*.js' && standardx '**/*.cjs'", 105 "compile": "tsc", 106 "coverage": "c8 report --check-coverage", 107 "fix": "standardx --fix '**/*.ts' && standardx --fix '**/*.js' && standardx --fix '**/*.cjs'", 108 "postcompile": "npm run build:cjs", 109 "precompile": "rimraf build", 110 "prepare": "npm run compile", 111 "pretest": "rimraf build && tsc -p tsconfig.test.json && cross-env NODE_ENV=test npm run build:cjs", 112 "pretest:typescript": "npm run pretest", 113 "test": "c8 --reporter=text --reporter=html mocha test/*.cjs", 114 "test:browser": "start-server-and-test 'serve ./ -p 8080' http://127.0.0.1:8080/package.json 'node ./test/browser/yargs-test.cjs'", 115 "test:typescript": "c8 mocha ./build/test/typescript/*.js" 73 "coverage": "nyc report --reporter=text-lcov | coveralls", 74 "posttest": "standard", 75 "release": "standard-version", 76 "test": "nyc mocha test/*.js" 116 77 }, 117 "standardx": { 118 "ignore": [ 119 "build" 120 ] 121 }, 122 "type": "module", 123 "version": "20.2.9" 78 "version": "13.1.2" 124 79 }
Note:
See TracChangeset
for help on using the changeset viewer.