-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1015 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1015 Bytes
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
{
"name": "markuplint-angular-parser",
"version": "3.0.2",
"type": "module",
"description": "Angular parser for markuplint.",
"repository": "git+https://github.com/un-ts/markuplint.git",
"homepage": "https://github.com/un-ts/markuplint/tree/main/packages/angular-parser",
"author": "JounQin (https://www.1stG.me) <admin@1stg.me>",
"funding": "https://opencollective.com/markuplint",
"license": "MIT",
"engines": {
"node": ">=18.18.0"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"files": [
"lib"
],
"keywords": [
"markuplint",
"markuplint-parser",
"markuplint-angular-parser",
"angular-parser",
"angular-html-parser",
"angular-linter"
],
"dependencies": {
"@markuplint/ml-ast": "^4.4.9",
"@markuplint/parser-utils": "^4.8.6",
"angular-html-parser": "^9.0.0",
"uuid": "^11.1.0"
},
"publishConfig": {
"access": "public"
}
}