-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.68 KB
/
package.json
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": "gulp-xml-validator",
"version": "3.1.0",
"description": "Gulp plugin to validate XML",
"author": "Jan T. Sott",
"license": "MIT",
"type": "module",
"exports": "./dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/idleberg/gulp-xml-validator.git"
},
"keywords": [
"gulp",
"gulpplugin",
"gulp-plugin",
"linter",
"validator",
"xml",
"xmldom"
],
"files": [
"dist/",
"LICENSE",
"package.json",
"README.md"
],
"engines": {
"gulp": ">=2.3.0",
"node": ">=18"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.10",
"kleur": "^4.1.5",
"plugin-error": "^2.0.1"
},
"devDependencies": {
"@types/node": "^18.19.55",
"@types/gulp": "^4.0.17",
"@types/vinyl": "^2.0.12",
"eslint": "^9.12.0",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-unicorn": "^56.0.0",
"gulp": "^4.0.2",
"husky": "^9.1.6",
"knip": "^5.33.3",
"lint-staged": "^15.2.10",
"npm-run-all2": "^6.2.3",
"prettier": "^3.3.3",
"tsm": "^2.3.0",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1",
"uvu": "^0.5.6"
},
"peerDependencies": {
"gulp": ">=4.0.2 || ^5"
},
"scripts": {
"build": "tsup",
"dev": "npm run build -- --watch",
"lint:code": "eslint **/*.json **/*.ts --no-warn-ignored",
"lint:deps": "knip --production",
"lint": "npm-run-all --parallel lint:*",
"prepack": "npm run build",
"prepare": "husky",
"test": "uvu -r tsm tests"
},
"lint-staged": {
"*.(ts|json)": [
"eslint --cache --fix",
"prettier --cache --write"
]
},
"packageManager": "[email protected]+sha512.9df9cf27c91715646c7d675d1c9c8e41f6fce88246f1318c1aa6a1ed1aeb3c4f032fcdf4ba63cc69c4fe6d634279176b5358727d8f2cc1e65b65f43ce2f8bfb0"
}