-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1009 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1009 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
41
{
"name": "eslint-plugin-tsdoc",
"version": "0.5.2",
"description": "An ESLint plugin that validates TypeScript doc comments",
"keywords": [
"TypeScript",
"documentation",
"doc",
"comments",
"JSDoc",
"TSDoc",
"ESLint",
"plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/tsdoc",
"directory": "eslint-plugin"
},
"homepage": "https://tsdoc.org/",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "heft test --clean",
"_phase:build": "heft run --only build -- --clean",
"_phase:test": "heft run --only test -- --clean"
},
"dependencies": {
"@microsoft/tsdoc-config": "workspace:*",
"@microsoft/tsdoc": "workspace:*",
"@typescript-eslint/utils": "~8.58.0"
},
"devDependencies": {
"tsdoc-build-rig": "workspace:*",
"@rushstack/heft": "1.2.7",
"@types/eslint": "8.40.1",
"@types/estree": "1.0.1",
"eslint": "~9.25.1"
}
}