-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.62 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
{
"name": "textlint-plugin-tsdoc",
"description": "textlint plugin for tsdoc",
"version": "0.1.0",
"author": "sasa+1 <[email protected]>",
"dependencies": {
"@microsoft/tsdoc": "^0.15.0",
"@textlint/ast-node-types": "^12.2.2",
"typescript": "^5.0.0"
},
"devDependencies": {
"@textlint/ast-tester": "^13.0.0",
"@textlint/types": "^13.0.0",
"@tsconfig/strictest": "^2.0.0",
"@types/node": "^18.11.15",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-tsdoc": "^0.2.17",
"npm-run-all2": "^5.0.0",
"prettier": "^2.8.1"
},
"engines": {
"node": ">=8.3.0"
},
"files": [
"dist",
"!dist/*.test.*"
],
"license": "MIT",
"main": "./dist/index.js",
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"overrides": [
{
"files": "*.json",
"options": {
"parser": "json-stringify"
}
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/sasaplus1/textlint-plugin-tsdoc.git"
},
"scripts": {
"build": "tsc",
"fix": "run-p --print-label fix:*",
"fix:eslint": "eslint --fix .",
"fix:fixpack": "npx fixpack",
"fix:prettier": "prettier --write .",
"lint": "run-p --print-label lint:*",
"lint:eslint": "eslint .",
"lint:fixpack": "npx fixpack --dryRun",
"lint:prettier": "prettier --check .",
"prepare": "tsc",
"pretest": "tsc",
"test": "node --test"
},
"types": "./dist/index.d.ts"
}