source: frontend/node_modules/schema-utils/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 2.8 KB
Line 
1{
2 "name": "schema-utils",
3 "version": "4.3.3",
4 "description": "webpack Validation Utils",
5 "license": "MIT",
6 "repository": "webpack/schema-utils",
7 "author": "webpack Contrib (https://github.com/webpack-contrib)",
8 "homepage": "https://github.com/webpack/schema-utils",
9 "bugs": "https://github.com/webpack/schema-utils/issues",
10 "funding": {
11 "type": "opencollective",
12 "url": "https://opencollective.com/webpack"
13 },
14 "main": "dist/index.js",
15 "types": "declarations/index.d.ts",
16 "engines": {
17 "node": ">= 10.13.0"
18 },
19 "scripts": {
20 "start": "npm run build -- -w",
21 "clean": "del-cli dist declarations",
22 "prebuild": "npm run clean",
23 "build:types": "tsc --declaration --emitDeclarationOnly --outDir declarations && prettier \"declarations/**/*.ts\" --write",
24 "build:code": "babel src -d dist --copy-files",
25 "build": "npm-run-all -p \"build:**\"",
26 "commitlint": "commitlint --from=main",
27 "security": "npm audit --production",
28 "fmt:check": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
29 "lint:code": "eslint --cache .",
30 "lint:types": "tsc --pretty --noEmit",
31 "lint": "npm-run-all lint:code lint:types fmt:check",
32 "fmt": "npm run fmt:check -- --write",
33 "fix:js": "npm run lint:code -- --fix",
34 "fix": "npm-run-all fix:js fmt",
35 "test:only": "jest",
36 "test:watch": "npm run test:only -- --watch",
37 "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
38 "pretest": "npm run lint",
39 "test": "npm run test:coverage",
40 "prepare": "npm run build && husky install",
41 "release": "standard-version"
42 },
43 "files": [
44 "dist",
45 "declarations"
46 ],
47 "dependencies": {
48 "@types/json-schema": "^7.0.9",
49 "ajv": "^8.9.0",
50 "ajv-formats": "^2.1.1",
51 "ajv-keywords": "^5.1.0"
52 },
53 "devDependencies": {
54 "@eslint/js": "^9.28.0",
55 "@eslint/markdown": "^6.5.0",
56 "@babel/cli": "^7.17.0",
57 "@babel/core": "^7.17.0",
58 "@babel/preset-env": "^7.16.11",
59 "@commitlint/cli": "^17.6.1",
60 "@commitlint/config-conventional": "^16.0.0",
61 "@types/node": "^22.15.19",
62 "@stylistic/eslint-plugin": "^4.4.1",
63 "babel-jest": "^27.4.6",
64 "del": "^6.0.0",
65 "del-cli": "^4.0.1",
66 "globals": "^16.2.0",
67 "eslint": "^9.28.0",
68 "eslint-config-webpack": "^4.0.2",
69 "eslint-config-prettier": "^10.1.5",
70 "eslint-plugin-import": "^2.31.0",
71 "eslint-plugin-jest": "^28.12.0",
72 "eslint-plugin-jsdoc": "^50.7.1",
73 "eslint-plugin-n": "^17.19.0",
74 "eslint-plugin-prettier": "^5.4.1",
75 "eslint-plugin-unicorn": "^59.0.1",
76 "husky": "^7.0.4",
77 "jest": "^27.4.7",
78 "lint-staged": "^16.0.0",
79 "npm-run-all": "^4.1.5",
80 "prettier": "^3.5.3",
81 "prettier-2": "npm:prettier@^2",
82 "standard-version": "^9.3.2",
83 "typescript": "^5.8.3",
84 "webpack": "^5.99.8"
85 },
86 "keywords": [
87 "webpack"
88 ]
89}
Note: See TracBrowser for help on using the repository browser.