-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "antora-indexer-cli",
"version": "1.12.0",
"description": "A tool to generate Lunr.js indexes out of an Antora project",
"main": "index.js",
"scripts": {
"coverage": "npx nyc --reporter=html ts-mocha --timeout 10000 spec/*",
"test": "npx ts-mocha --timeout 10000 spec/*",
"clean": "npx rimraf out dist coverage .repos .nyc_output",
"help": "npx ts-node src/antora-indexer.ts --help",
"release": "npx gulp",
"build": "npx tsc",
"lint": "npx eslint src"
},
"author": "VSHN AG",
"license": "ISC",
"dependencies": {
"asciidoctor": "^2.2.0",
"commander": "^7.0.0",
"isomorphic-git": "^1.10.0",
"js-yaml": "^4.0.0",
"jsdom": "^16.0.0",
"lunr": "^2.3.9"
},
"devDependencies": {
"@types/chai": "4.2.17",
"@types/chai-as-promised": "^7.1.4",
"@types/gulp": "4.0.8",
"@types/js-yaml": "4.0.1",
"@types/jsdom": "16.2.11",
"@types/lunr": "2.3.3",
"@types/mocha": "8.2.2",
"@types/node": "14.17.3",
"@typescript-eslint/eslint-plugin": "5.9.0",
"@typescript-eslint/parser": "5.9.0",
"chai": "4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "7.21.0",
"gulp": "4.0.2",
"gulp-chmod": "3.0.0",
"gulp-insert": "0.5.0",
"gulp-typescript": "6.0.0-alpha.1",
"gulp-uglify": "3.0.2",
"mocha": "9.0.0",
"nyc": "^15.1.0",
"rimraf": "3.0.2",
"ts-mocha": "8.0.0",
"ts-node": "9.1.1",
"typescript": "^5.0.0"
}
}