-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.35 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.35 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
{
"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"
},
"devDependencies": {
"jest": "^30.3.0",
"jest-junit": "^16",
"retire": "^5.4.2"
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/starlight": "^0.38.2",
"astro": "^6.1.6",
"typescript": "^6.0.2"
},
"main": "lib/index.js",
"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
}