-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.38 KB
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
{
"name": "schema-utils",
"version": "4.5.0",
"description": "webpack Validation Utils",
"keywords": [
"webpack"
],
"homepage": "https://github.com/webpack/schema-utils",
"bugs": "https://github.com/webpack/schema-utils/issues",
"repository": "webpack/schema-utils",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"license": "MIT",
"author": "webpack Contrib (https://github.com/webpack-contrib)",
"main": "dist/index.js",
"types": "declarations/index.d.ts",
"files": [
"dist",
"declarations"
],
"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": "babel src -d dist --copy-files",
"build": "npm-run-all -p \"build:**\"",
"security": "npm audit --production",
"fmt:check": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
"lint:code": "eslint --cache .",
"lint:types": "tsc --pretty --noEmit",
"lint": "npm-run-all lint:code lint:types fmt:check",
"fmt": "npm run fmt:check -- --write",
"fix:code": "npm run lint:code -- --fix",
"fix": "npm-run-all fix:code fmt",
"test:only": "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": "husky && npm run build",
"version": "changeset version",
"release": "npm run build && changeset publish"
},
"dependencies": {
"@types/json-schema": "^7.0.15",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"ajv-keywords": "^5.1.0"
},
"devDependencies": {
"@babel/cli": "^8.0.4",
"@babel/core": "^8.0.1",
"@babel/preset-env": "^8.0.1",
"@changesets/cli": "^2.31.1",
"@changesets/get-github-info": "^0.8.0",
"@types/node": "^26.5.0",
"babel-jest": "^30.3.0",
"del": "^8.0.1",
"del-cli": "^7.0.0",
"eslint": "^10.10.0",
"eslint-config-webpack": "^4.9.6",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^17.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.9.6",
"typescript": "^6.0.3",
"webpack": "^5.110.3"
},
"engines": {
"node": ">= 10.13.0"
}
}