-
-
Notifications
You must be signed in to change notification settings - Fork 382
/
package.json
98 lines (98 loc) · 2.49 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "htmlhint",
"version": "1.1.4",
"description": "The Static Code Analysis Tool for your HTML",
"keywords": [
"html",
"hint",
"analysis",
"javascript"
],
"homepage": "https://htmlhint.com",
"bugs": {
"url": "https://github.com/htmlhint/HTMLHint/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/htmlhint/HTMLHint.git"
},
"engines": {
"node": ">=14"
},
"license": "MIT",
"main": "dist/htmlhint.js",
"module": "dist/core/core.js",
"bin": {
"htmlhint": "./bin/htmlhint"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "npm run clean && tsc && npm run build:rollup",
"build:min": "rollup -c --environment NODE_ENV:production --file dist/htmlhint.min.js",
"build:rollup": "npm run build:min && npm run build:unmin",
"build:unmin": "rollup -c",
"clean": "rimraf dist",
"commit": "npx git-cz",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0 && prettier -c .",
"lint:fix": "eslint . --fix && npm run prettier",
"prepare": "husky install",
"prettier": "prettier --write .",
"test": "jest",
"test:coverage": "jest --coverage"
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write"
],
".js": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"cz-customizable": {
"config": "commitizen.config.js"
}
},
"dependencies": {
"async": "3.2.4",
"chalk": "^4.1.2",
"commander": "^9.1.0",
"glob": "^8.0.3",
"is-glob": "^4.0.3",
"node-fetch": "^2.6.2",
"strip-json-comments": "3.1.0",
"xml": "1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^15.0.2",
"@types/async": "^3.2.19",
"@types/glob": "^8.0.0",
"@types/is-glob": "4.0.2",
"@types/node-fetch": "^2.5.12",
"@types/xml": "^1.0.8",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.59.1",
"commitizen": "^4.2.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.0.2",
"lint-staged": "^13.2.2",
"parse-glob": "3.0.4",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"rollup": "^2.60.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.5.2"
}
}