-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 914 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 914 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": "technical-docs-linter",
"version": "1.0.0",
"description": "A technical document linter with flexible rules.",
"main": "server.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "test",
"start": "node server.js"
},
"bin": {
"doclint": "./src/doclint.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/DavidRHannah/technical-docs-linter.git"
},
"keywords": [
"technical",
"docs",
"linter"
],
"author": "David Hannah",
"license": "ISC",
"bugs": {
"url": "https://github.com/DavidRHannah/technical-docs-linter/issues"
},
"homepage": "https://github.com/DavidRHannah/technical-docs-linter#readme",
"dependencies": {
"chalk": "^5.6.2",
"remark-parse": "^11.0.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"yargs": "^18.0.0"
}
}