-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.29 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
{
"private": true,
"name": "antora-xref-extension",
"version": "1.0.0-alpha.4",
"workspaces": [
"packages/*"
],
"exports": {
".": "./packages/xref-extension/lib/index.js"
},
"scripts": {
"build": "npm test && npm run lint",
"coverage": "nyc _mocha",
"coverage-strict": "nyc --branches=100 --lines=100 _mocha",
"format": "node npm/format.js packages/${npm_config_package},npm",
"lint": "eslint \"{docs,npm}/**/*.js\" \"packages/${npm_config_package:-*}/{lib,test}/**/*.js\"",
"test": "_mocha",
"version": "node npm/version.js"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"eslint": "~8.27",
"eslint-config-standard": "~17.0",
"mocha": "~10.1",
"nyc": "~15.1",
"prettier-eslint": "~15.0"
},
"nyc": {
"cache": true,
"cacheDir": "node_modules/.cache/nyc",
"include": [
"packages/*/{bin,lib}/**/*.js"
],
"exclude": [
"packages/xref-test-harness/lib/*.js"
],
"reporter": [
"cobertura",
"lcov",
"text"
],
"reportDir": "reports"
},
"dependencies": {
"@antora/asciidoc-loader": "^3.1.7",
"@antora/content-classifier": "^3.1.7",
"@antora/document-converter": "^3.1.7",
"downdoc": "^1.0.2-stable",
"i": "^0.3.7",
"npm": "^10.5.0"
}
}