| 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
 | | { |  |   "name": "schema-utils", |  |   "version": "3.1.1", |  |   "description": "webpack Validation Utils", |  |   "license": "MIT", |  |   "repository": "webpack/schema-utils", |  |   "author": "webpack Contrib (https://github.com/webpack-contrib)", |  |   "homepage": "https://github.com/webpack/schema-utils", |  |   "bugs": "https://github.com/webpack/schema-utils/issues", |  |   "funding": { |  |     "type": "opencollective", |  |     "url": "https://opencollective.com/webpack" |  |   }, |  |   "main": "dist/index.js", |  |   "types": "declarations/index.d.ts", |  |   "engines": { |  |     "node": ">= 10.13.0" |  |   }, |  |   "scripts": { |  |     "start": "npm run build -- -w", |  |     "clean": "del-cli dist declarations", |  |     "prebuild": "npm run clean", |  |     "build:types": "tsc --declaration --emitDeclarationOnly --outDir declarations && prettier \"declarations/**/*.ts\" --write", |  |     "build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files", |  |     "build": "npm-run-all -p \"build:**\"", |  |     "commitlint": "commitlint --from=master", |  |     "security": "npm audit --production", |  |     "fmt:check": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different", |  |     "lint:js": "eslint --cache .", |  |     "lint:types": "tsc --pretty --noEmit", |  |     "lint": "npm-run-all lint:js lint:types fmt:check", |  |     "fmt": "npm run fmt:check -- --write", |  |     "fix:js": "npm run lint:js -- --fix", |  |     "fix": "npm-run-all fix:js fmt", |  |     "test:only": "cross-env NODE_ENV=test jest", |  |     "test:watch": "npm run test:only -- --watch", |  |     "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage", |  |     "pretest": "npm run lint", |  |     "test": "npm run test:coverage", |  |     "prepare": "npm run build && husky install", |  |     "release": "standard-version" |  |   }, |  |   "files": [ |  |     "dist", |  |     "declarations" |  |   ], |  |   "dependencies": { |  |     "@types/json-schema": "^7.0.8", |  |     "ajv": "^6.12.5", |  |     "ajv-keywords": "^3.5.2" |  |   }, |  |   "devDependencies": { |  |     "@babel/cli": "^7.14.3", |  |     "@babel/core": "^7.14.6", |  |     "@babel/preset-env": "^7.14.7", |  |     "@commitlint/cli": "^12.1.4", |  |     "@commitlint/config-conventional": "^12.1.4", |  |     "@webpack-contrib/eslint-config-webpack": "^3.0.0", |  |     "babel-jest": "^27.0.6", |  |     "cross-env": "^7.0.3", |  |     "del": "^6.0.0", |  |     "del-cli": "^3.0.1", |  |     "eslint": "^7.31.0", |  |     "eslint-config-prettier": "^8.3.0", |  |     "eslint-plugin-import": "^2.23.4", |  |     "husky": "^6.0.0", |  |     "jest": "^27.0.6", |  |     "lint-staged": "^11.0.1", |  |     "npm-run-all": "^4.1.5", |  |     "prettier": "^2.3.2", |  |     "standard-version": "^9.3.1", |  |     "typescript": "^4.3.5", |  |     "webpack": "^5.45.1" |  |   }, |  |   "keywords": [ |  |     "webpack" |  |   ] |  | } | 
 |