-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.27 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
{
"name": "eslint-plugin-markup",
"version": "0.11.0",
"type": "module",
"description": "An incredible ESLint plugin for all markup languages based on markuplint",
"repository": "git+https://github.com/un-ts/eslint.git",
"homepage": "https://github.com/un-ts/eslint/blob/main/packages/markup",
"author": "JounQin (https://www.1stG.me) <[email protected]>",
"funding": "https://opencollective.com/unts",
"license": "MIT",
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"exports": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"es2015": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"keywords": [
"eslint",
"eslint-plugin",
"eslint-plugin-htm",
"eslint-plugin-html",
"markuplint",
"htmllint",
"htmlhint",
"html-lint",
"html-hint",
"linthtml"
],
"peerDependencies": {
"eslint": ">=5.0.0"
},
"dependencies": {
"cosmiconfig": "^8.1.3",
"eslint-plugin-utils": "^0.3.2",
"markuplint": "^3.7.0",
"synckit": "^0.8.8",
"tslib": "^2.6.2"
},
"publishConfig": {
"access": "public"
},
"sideEffects": [
"./lib/es*.js",
"./lib/index.js"
]
}