-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.51 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@abca/docs",
"scripts": {
"sync": "node scripts/sync-starlight.mjs",
"dev": "astro dev",
"start": "astro dev",
"docs:check": "npm run sync && astro check",
"docs:build": "npm run sync && astro build",
"build": "npm run docs:build",
"preview": "astro preview",
"security:retire": "retire --path . --severity high",
"link-check": "bash scripts/link-check.sh"
},
"devDependencies": {
"jest": "^30.4.2",
"jest-junit": "^17",
"markdown-link-check": "^3.13.6",
"retire": "^5.4.3"
},
"dependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/starlight": "^0.41.2",
"astro": "7.1.0",
"remark-gfm": "^4.0.1",
"typescript": "^6.0.3"
},
"main": "lib/index.js",
"engines": {
"node": ">= 20.x <= 24.x"
},
"license": "MIT-0",
"version": "0.0.0",
"jest": {
"coverageProvider": "v8",
"clearMocks": true,
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"clover",
"cobertura",
"text"
],
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"watchPathIgnorePatterns": [
"/node_modules/"
],
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/*(*.)@(spec|test).[jt]s?(x)"
],
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "test-reports"
}
]
]
},
"private": true
}