| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
 | | { |  |   "name": "enhanced-resolve", |  |   "version": "4.5.0", |  |   "author": "Tobias Koppers @sokra", |  |   "description": "Offers a async require.resolve function. It's highly configurable.", |  |   "files": [ |  |     "lib", |  |     "LICENSE" |  |   ], |  |   "dependencies": { |  |     "graceful-fs": "^4.1.2", |  |     "memory-fs": "^0.5.0", |  |     "tapable": "^1.0.0" |  |   }, |  |   "licenses": [ |  |     { |  |       "type": "MIT", |  |       "url": "http://www.opensource.org/licenses/mit-license.php" |  |     } |  |   ], |  |   "devDependencies": { |  |     "codecov.io": "^0.1.6", |  |     "coveralls": "^2.11.6", |  |     "eslint": "^5.9.0", |  |     "eslint-config-prettier": "^3.3.0", |  |     "eslint-plugin-node": "^8.0.0", |  |     "eslint-plugin-prettier": "^3.0.0", |  |     "husky": "^1.2.0", |  |     "istanbul": "^0.4.1", |  |     "lint-staged": "^8.1.0", |  |     "mocha": "^2.3.4", |  |     "prettier": "^1.15.2", |  |     "should": "^8.0.2" |  |   }, |  |   "engines": { |  |     "node": ">=6.9.0" |  |   }, |  |   "main": "lib/node.js", |  |   "homepage": "http://github.com/webpack/enhanced-resolve", |  |   "scripts": { |  |     "lint": "eslint lib test", |  |     "pretty": "prettier --loglevel warn --write \"{lib,test}/**/*.{js,json}\"", |  |     "pretest": "yarn lint", |  |     "test": "mocha --full-trace --check-leaks", |  |     "precover": "yarn lint", |  |     "cover": "istanbul cover node_modules/mocha/bin/_mocha", |  |     "travis": "yarn cover --report lcovonly" |  |   }, |  |   "husky": { |  |     "hooks": { |  |       "pre-commit": "lint-staged" |  |     } |  |   }, |  |   "lint-staged": { |  |     "*.js": [ |  |       "eslint --cache" |  |     ] |  |   }, |  |   "repository": { |  |     "type": "git", |  |     "url": "git://github.com/webpack/enhanced-resolve.git" |  |   } |  | } | 
 |