-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1000 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1000 Bytes
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
{
"name": "lousy-api-eval",
"version": "0.0.0",
"description": "Evaluation tooling for measuring the impact of GitHub Copilot instructions on REST API code quality",
"private": true,
"type": "module",
"license": "MIT",
"author": "Zach Pratt",
"engines": {
"node": ">=24.14.0"
},
"scripts": {
"test": "vitest run",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"lint": "biome lint .",
"lint:api": "node scripts/spectral-report.mjs",
"lint:spectral": "spectral lint --fail-severity=error"
},
"overrides": {
"@stoplight/spectral-core": {
"minimatch": "3.1.5"
},
"@stoplight/spectral-ruleset-bundler": {
"rollup": "2.80.0"
}
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@stoplight/spectral-cli": "6.15.0",
"@stoplight/spectral-owasp-ruleset": "2.0.1",
"@types/chance": "1.1.7",
"chance": "1.1.13",
"testcontainers": "11.12.0",
"typescript": "5.9.3",
"vitest": "4.0.18"
}
}