125 lines
3.8 KiB
JSON
125 lines
3.8 KiB
JSON
{
|
|
"_from": "schema-utils@^4.0.1",
|
|
"_id": "schema-utils@4.3.3",
|
|
"_inBundle": false,
|
|
"_integrity": "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==",
|
|
"_location": "/schema-utils",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"type": "range",
|
|
"registry": true,
|
|
"raw": "schema-utils@^4.0.1",
|
|
"name": "schema-utils",
|
|
"escapedName": "schema-utils",
|
|
"rawSpec": "^4.0.1",
|
|
"saveSpec": null,
|
|
"fetchSpec": "^4.0.1"
|
|
},
|
|
"_requiredBy": [
|
|
"/css-minimizer-webpack-plugin",
|
|
"/terser-webpack-plugin",
|
|
"/webpack"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.3.tgz",
|
|
"_shasum": "5b1850912fa31df90716963d45d9121fdfc09f46",
|
|
"_spec": "schema-utils@^4.0.1",
|
|
"_where": "/root/dns/node_modules/css-minimizer-webpack-plugin",
|
|
"author": {
|
|
"name": "webpack Contrib",
|
|
"url": "https://github.com/webpack-contrib"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/webpack/schema-utils/issues"
|
|
},
|
|
"bundleDependencies": false,
|
|
"dependencies": {
|
|
"@types/json-schema": "^7.0.9",
|
|
"ajv": "^8.9.0",
|
|
"ajv-formats": "^2.1.1",
|
|
"ajv-keywords": "^5.1.0"
|
|
},
|
|
"deprecated": false,
|
|
"description": "webpack Validation Utils",
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.17.0",
|
|
"@babel/core": "^7.17.0",
|
|
"@babel/preset-env": "^7.16.11",
|
|
"@commitlint/cli": "^17.6.1",
|
|
"@commitlint/config-conventional": "^16.0.0",
|
|
"@eslint/js": "^9.28.0",
|
|
"@eslint/markdown": "^6.5.0",
|
|
"@stylistic/eslint-plugin": "^4.4.1",
|
|
"@types/node": "^22.15.19",
|
|
"babel-jest": "^27.4.6",
|
|
"del": "^6.0.0",
|
|
"del-cli": "^4.0.1",
|
|
"eslint": "^9.28.0",
|
|
"eslint-config-prettier": "^10.1.5",
|
|
"eslint-config-webpack": "^4.0.2",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"eslint-plugin-jest": "^28.12.0",
|
|
"eslint-plugin-jsdoc": "^50.7.1",
|
|
"eslint-plugin-n": "^17.19.0",
|
|
"eslint-plugin-prettier": "^5.4.1",
|
|
"eslint-plugin-unicorn": "^59.0.1",
|
|
"globals": "^16.2.0",
|
|
"husky": "^7.0.4",
|
|
"jest": "^27.4.7",
|
|
"lint-staged": "^16.0.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^3.5.3",
|
|
"prettier-2": "npm:prettier@^2",
|
|
"standard-version": "^9.3.2",
|
|
"typescript": "^5.8.3",
|
|
"webpack": "^5.99.8"
|
|
},
|
|
"engines": {
|
|
"node": ">= 10.13.0"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"declarations"
|
|
],
|
|
"funding": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/webpack"
|
|
},
|
|
"homepage": "https://github.com/webpack/schema-utils",
|
|
"keywords": [
|
|
"webpack"
|
|
],
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"name": "schema-utils",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/webpack/schema-utils.git"
|
|
},
|
|
"scripts": {
|
|
"build": "npm-run-all -p \"build:**\"",
|
|
"build:code": "babel src -d dist --copy-files",
|
|
"build:types": "tsc --declaration --emitDeclarationOnly --outDir declarations && prettier \"declarations/**/*.ts\" --write",
|
|
"clean": "del-cli dist declarations",
|
|
"commitlint": "commitlint --from=main",
|
|
"fix": "npm-run-all fix:js fmt",
|
|
"fix:js": "npm run lint:code -- --fix",
|
|
"fmt": "npm run fmt:check -- --write",
|
|
"fmt:check": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
|
|
"lint": "npm-run-all lint:code lint:types fmt:check",
|
|
"lint:code": "eslint --cache .",
|
|
"lint:types": "tsc --pretty --noEmit",
|
|
"prebuild": "npm run clean",
|
|
"prepare": "npm run build && husky install",
|
|
"pretest": "npm run lint",
|
|
"release": "standard-version",
|
|
"security": "npm audit --production",
|
|
"start": "npm run build -- -w",
|
|
"test": "npm run test:coverage",
|
|
"test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
|
|
"test:only": "jest",
|
|
"test:watch": "npm run test:only -- --watch"
|
|
},
|
|
"types": "declarations/index.d.ts",
|
|
"version": "4.3.3"
|
|
}
|