forked from hawkeyexl/doc-structure-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "doc-structure-lint",
"version": "0.0.5",
"description": "A tool to validate Markdown and AsciiDoc structure against a specified template",
"bin": {
"doc-structure-lint": "src/index.js"
},
"main": "src/index.js",
"scripts": {
"postinstall": "node src/util/preloadModel.js",
"clean": "node src/util/tempDir.js clean",
"start": "node src/index.js",
"test": "mocha 'src/**/*.test.js'",
"prepare": "husky"
},
"author": "Manny Silva",
"license": "MIT",
"type": "module",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.7.3",
"ajv": "^8.17.1",
"asciidoctor": "^3.0.4",
"axios": "^1.7.9",
"crypto": "^1.0.1",
"node-llama-cpp": "^3.3.1",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"uuid": "^11.0.3",
"yaml": "^2.6.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"chai": "^5.1.2",
"husky": "^9.1.7",
"mocha": "^11.0.1",
"sinon": "^19.0.2"
},
"files": [
"index.js",
"src/**/*.js"
],
"publishConfig": {
"access": "public"
}
}