Changeset 59329aa for trip-planner-front/node_modules/enhanced-resolve
- 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/enhanced-resolve/package.json
rceaed42 r59329aa 1 1 { 2 "name": "enhanced-resolve", 3 "version": "5.8.3", 4 "author": "Tobias Koppers @sokra", 5 "description": "Offers a async require.resolve function. It's highly configurable.", 6 "files": [ 7 "lib", 8 "types.d.ts", 9 "LICENSE" 2 "_args": [ 3 [ 4 "enhanced-resolve@5.8.3", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 10 7 ], 8 "_development": true, 9 "_from": "enhanced-resolve@5.8.3", 10 "_id": "enhanced-resolve@5.8.3", 11 "_inBundle": false, 12 "_integrity": "sha512-EGAbGvH7j7Xt2nc0E7D99La1OiEs8LnyimkRgwExpUMScN6O+3x9tIWs7PLQZVNx4YD+00skHXPXi1yQHpAmZA==", 13 "_location": "/enhanced-resolve", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "enhanced-resolve@5.8.3", 19 "name": "enhanced-resolve", 20 "escapedName": "enhanced-resolve", 21 "rawSpec": "5.8.3", 22 "saveSpec": null, 23 "fetchSpec": "5.8.3" 24 }, 25 "_requiredBy": [ 26 "/webpack" 27 ], 28 "_resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.3.tgz", 29 "_spec": "5.8.3", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "Tobias Koppers @sokra" 33 }, 11 34 "browser": { 12 35 "pnpapi": false, 13 36 "process": "./lib/util/process-browser.js" 37 }, 38 "bugs": { 39 "url": "https://github.com/webpack/enhanced-resolve/issues" 14 40 }, 15 41 "dependencies": { … … 17 43 "tapable": "^2.2.0" 18 44 }, 19 " license": "MIT",45 "description": "Offers a async require.resolve function. It's highly configurable.", 20 46 "devDependencies": { 21 47 "@types/mocha": "^8.0.3", … … 33 59 "prettier": "^2.1.2", 34 60 "should": "^13.2.3", 35 "tooling": " webpack/tooling#v1.14.0",61 "tooling": "github:webpack/tooling#v1.14.0", 36 62 "typescript": "^4.2.0-beta" 37 63 }, … … 39 65 "node": ">=10.13.0" 40 66 }, 41 "main": "lib/index.js", 42 "types": "types.d.ts", 67 "files": [ 68 "lib", 69 "types.d.ts", 70 "LICENSE" 71 ], 43 72 "homepage": "http://github.com/webpack/enhanced-resolve", 44 "scripts": {45 "lint": "yarn run code-lint && yarn run type-lint && yarn run special-lint",46 "fix": "yarn run code-lint-fix && yarn run special-lint-fix",47 "code-lint": "eslint --cache lib test",48 "code-lint-fix": "eslint --cache lib test --fix",49 "type-lint": "tsc",50 "special-lint": "node node_modules/tooling/lockfile-lint && node node_modules/tooling/inherit-types && node node_modules/tooling/format-file-header && node node_modules/tooling/generate-types",51 "special-lint-fix": "node node_modules/tooling/inherit-types --write && node node_modules/tooling/format-file-header --write && node node_modules/tooling/generate-types --write",52 "pretty": "prettier --loglevel warn --write \"lib/**/*.{js,json}\" \"test/*.js\"",53 "pretest": "yarn lint",54 "test": "mocha --full-trace --check-leaks",55 "test:only": "mocha --full-trace --check-leaks",56 "precover": "yarn lint",57 "cover": "nyc --reporter=html node node_modules/mocha/bin/_mocha --full-trace --check-leaks",58 "cover:ci": "nyc --reporter=lcovonly node node_modules/mocha/bin/_mocha --full-trace --check-leaks"59 },60 73 "husky": { 61 74 "hooks": { … … 63 76 } 64 77 }, 78 "license": "MIT", 65 79 "lint-staged": { 66 80 "*.js": [ … … 68 82 ] 69 83 }, 84 "main": "lib/index.js", 85 "name": "enhanced-resolve", 70 86 "repository": { 71 87 "type": "git", 72 88 "url": "git://github.com/webpack/enhanced-resolve.git" 73 } 89 }, 90 "scripts": { 91 "code-lint": "eslint --cache lib test", 92 "code-lint-fix": "eslint --cache lib test --fix", 93 "cover": "nyc --reporter=html node node_modules/mocha/bin/_mocha --full-trace --check-leaks", 94 "cover:ci": "nyc --reporter=lcovonly node node_modules/mocha/bin/_mocha --full-trace --check-leaks", 95 "fix": "yarn run code-lint-fix && yarn run special-lint-fix", 96 "lint": "yarn run code-lint && yarn run type-lint && yarn run special-lint", 97 "precover": "yarn lint", 98 "pretest": "yarn lint", 99 "pretty": "prettier --loglevel warn --write \"lib/**/*.{js,json}\" \"test/*.js\"", 100 "special-lint": "node node_modules/tooling/lockfile-lint && node node_modules/tooling/inherit-types && node node_modules/tooling/format-file-header && node node_modules/tooling/generate-types", 101 "special-lint-fix": "node node_modules/tooling/inherit-types --write && node node_modules/tooling/format-file-header --write && node node_modules/tooling/generate-types --write", 102 "test": "mocha --full-trace --check-leaks", 103 "test:only": "mocha --full-trace --check-leaks", 104 "type-lint": "tsc" 105 }, 106 "types": "types.d.ts", 107 "version": "5.8.3" 74 108 }
Note:
See TracChangeset
for help on using the changeset viewer.