-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
74 lines (74 loc) · 2.05 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-latex2e",
"version": "1.2.1",
"description": "A textlint plugin for LaTeX2e",
"main": "lib/index.js",
"bin": {
"tex2tast": "./bin/tex2tast"
},
"scripts": {
"lint": "run-p lint:*",
"lint:eslint": "eslint '**/*.{ts,js}'",
"lint:prettier": "prettier --check '**/*.{ts,js,json}'",
"fix": "run-s fix:prettier fix:eslint",
"fix:eslint": "eslint --fix '**/*.{ts,js}'",
"fix:prettier": "prettier --write '**/*.{ts,js,json}'",
"build": "tsc",
"test": "jest",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build",
"prepublishOnly": "npm test && pinst --disable",
"postinstall": "husky install",
"postpublish": "pinst --enable"
},
"keywords": [
"textlint",
"latex"
],
"author": "TANIGUCHI Masaya",
"license": "MIT",
"dependencies": {
"@textlint/ast-node-types": "^12.0.0",
"fp-ts": "^2.8.3",
"latex-utensils": "^3.0.0"
},
"devDependencies": {
"@textlint/ast-tester": "12.6.1",
"@textlint/kernel": "12.6.1",
"@textlint/textlint-plugin-markdown": "12.6.1",
"@textlint/types": "12.6.1",
"@types/jest": "29.5.12",
"@types/node": "18.19.14",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"dictionary-en": "3.2.0",
"eslint": "8.56.0",
"eslint-config-prettier": "8.10.0",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "13.3.0",
"npm-run-all2": "5.0.2",
"pinst": "3.0.0",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"textlint-rule-spelling": "0.3.0",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "4.9.5",
"typescript-language-server": "3.3.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/textlint/textlint-plugin-latex2e.git"
},
"bugs": {
"url": "https://github.com/textlint/textlint-plugin-latex2e/issues"
},
"homepage": "https://github.com/textlint/textlint-plugin-latex2e#readme",
"optionalDependencies": {
"commander": "^9.0.0"
}
}