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"
|
---|
10 | ],
|
---|
11 | "browser": {
|
---|
12 | "pnpapi": false,
|
---|
13 | "process": "./lib/util/process-browser.js"
|
---|
14 | },
|
---|
15 | "dependencies": {
|
---|
16 | "graceful-fs": "^4.2.4",
|
---|
17 | "tapable": "^2.2.0"
|
---|
18 | },
|
---|
19 | "license": "MIT",
|
---|
20 | "devDependencies": {
|
---|
21 | "@types/mocha": "^8.0.3",
|
---|
22 | "@types/node": "^14.11.1",
|
---|
23 | "eslint": "^7.9.0",
|
---|
24 | "eslint-config-prettier": "^6.11.0",
|
---|
25 | "eslint-plugin-jsdoc": "^30.5.1",
|
---|
26 | "eslint-plugin-node": "^11.1.0",
|
---|
27 | "eslint-plugin-prettier": "^3.1.4",
|
---|
28 | "husky": "^4.3.0",
|
---|
29 | "lint-staged": "^10.4.0",
|
---|
30 | "memfs": "^3.2.0",
|
---|
31 | "mocha": "^8.1.3",
|
---|
32 | "nyc": "^15.1.0",
|
---|
33 | "prettier": "^2.1.2",
|
---|
34 | "should": "^13.2.3",
|
---|
35 | "tooling": "webpack/tooling#v1.14.0",
|
---|
36 | "typescript": "^4.2.0-beta"
|
---|
37 | },
|
---|
38 | "engines": {
|
---|
39 | "node": ">=10.13.0"
|
---|
40 | },
|
---|
41 | "main": "lib/index.js",
|
---|
42 | "types": "types.d.ts",
|
---|
43 | "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 | "husky": {
|
---|
61 | "hooks": {
|
---|
62 | "pre-commit": "lint-staged"
|
---|
63 | }
|
---|
64 | },
|
---|
65 | "lint-staged": {
|
---|
66 | "*.js": [
|
---|
67 | "eslint --cache"
|
---|
68 | ]
|
---|
69 | },
|
---|
70 | "repository": {
|
---|
71 | "type": "git",
|
---|
72 | "url": "git://github.com/webpack/enhanced-resolve.git"
|
---|
73 | }
|
---|
74 | }
|
---|