-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
74 lines (74 loc) · 1.81 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
{
"name": "textlint-plugin-html",
"version": "1.0.1",
"description": "textlint HTML plugin.",
"keywords": [
"textlint",
"plugin",
"html",
"lint"
],
"homepage": "https://github.com/textlint/textlint-plugin-html",
"bugs": {
"url": "https://github.com/textlint/textlint-plugin-html/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/textlint/textlint-plugin-html.git"
},
"license": "MIT",
"author": "azu",
"type": "module",
"exports": {
".": {
"import": {
"types": "./module/index.d.ts",
"default": "./module/index.js"
},
"default": "./module/index.js"
},
"./package.json": "./package.json"
},
"main": "./module/index.js",
"types": "./module/index.d.ts",
"directories": {
"test": "test"
},
"files": [
"module/",
"src/"
],
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"prepublishOnly": "npm run clean && npm run build",
"prepublish": "npm run --if-present build",
"test": "mocha",
"updateSnapshot": "UPDATE_SNAPSHOT=1 npm test",
"watch": "tsc --build --watch"
},
"dependencies": {
"@textlint/ast-node-types": "^13.0.5",
"neotraverse": "^0.6.15",
"rehype-parse": "^8.0.4",
"structured-source": "^4.0.0",
"unified": "^10.1.2"
},
"devDependencies": {
"@textlint/ast-tester": "^13.0.5",
"@textlint/kernel": "^13.0.5",
"@textlint/module-interop": "^13.0.5",
"@textlint/types": "^13.0.5",
"@types/glob": "^8.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"textlint": "^13.0.5",
"textlint-rule-no-todo": "^2.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"packageManager": "[email protected]",
"email": "[email protected]"
}