-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.25 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "metalint",
"version": "0.18.0",
"description": "Un linter pour les gouverner tous.",
"keywords": [
"checker",
"lint",
"metalint",
"quality",
"static-analysis"
],
"homepage": "https://github.com/regseb/metalint#readme",
"bugs": {
"url": "https://github.com/regseb/metalint/issues",
"email": "regseb@gmail.com"
},
"license": "MIT",
"author": "Sébastien Règne <regseb@gmail.com> (https://github.com/regseb)",
"funding": [
"https://buymeacoffee.com/regseb",
"https://www.paypal.me/sebastienregne"
],
"files": [
"./src/",
"./types/"
],
"exports": {
".": {
"types": "./types/core/index.d.ts",
"default": "./src/core/index.js"
},
"./api/formatter": {
"types": "./types/core/formatter/formatter.d.ts",
"default": "./src/core/formatter/formatter.js"
},
"./api/wrapper": {
"types": "./types/core/wrapper/wrapper.d.ts",
"default": "./src/core/wrapper/wrapper.js"
},
"./types": {
"types": "./types/core/types.d.ts"
},
"./package.json": "./package.json"
},
"main": "./src/core/index.js",
"types": "./types/core/index.d.ts",
"bin": "./src/bin/index.js",
"repository": "regseb/metalint",
"type": "module",
"scripts": {
"lint": "node src/bin/index.js",
"lint:fix": "node src/bin/index.js --fix",
"lint:types": "tsc --project .tsconfig_lint.json",
"test": "npm run test:unit",
"test:unit": "node --test \"test/unit/**/*.js\"",
"test:coverage": "stryker run",
"jsdocs": "typedoc --tsconfig .tsconfig_jsdocs.json",
"prepare": "tsc --project .tsconfig_types.json",
"clean": "node .script/clean.js"
},
"dependencies": {
"chalk": "5.3.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@coffeelint/cli": "5.2.11",
"@mapbox/jsonlint-lines-primitives": "2.0.2",
"@prantlf/jsonlint": "16.0.0",
"@prettier/plugin-xml": "3.4.1",
"@stryker-mutator/core": "8.6.0",
"@stryker-mutator/tap-runner": "8.6.0",
"@types/eslint-plugin-mocha": "10.4.0",
"@types/htmlhint": "1.1.5",
"@types/js-yaml": "4.0.9",
"@types/jshint": "2.12.4",
"@types/yargs": "17.0.33",
"addons-linter": "7.1.0",
"ajv": "8.17.1",
"csslint": "1.0.5",
"depcheck": "1.4.7",
"doiuse": "6.0.3",
"eslint": "9.12.0",
"eslint-plugin-array-func": "5.0.2",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.3.1",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-n": "17.10.3",
"eslint-plugin-no-unsanitized": "4.1.2",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-regexp": "2.6.0",
"eslint-plugin-unicorn": "56.0.0",
"globals": "15.10.0",
"htmlhint": "1.1.4",
"htmllint": "0.8.0",
"jshint": "2.13.6",
"jsonlint-mod": "1.7.6",
"jszip": "3.10.1",
"markdownlint": "0.35.0",
"markuplint": "4.9.4",
"npm-check-updates": "16.14.0",
"npm-package-json-lint": "8.0.0",
"prettier": "3.3.3",
"publint": "0.2.11",
"purgecss": "6.0.0",
"sort-package-json": "2.10.1",
"standard": "17.1.2",
"stylelint": "16.9.0",
"svglint": "3.0.0",
"typedoc": "0.26.8",
"typescript": "5.6.2",
"yaml-lint": "1.7.0"
},
"engines": {
"node": ">=22.1.0"
}
}