-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.58 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
{
"name": "@api-common/spectral-reporter",
"version": "0.2.0",
"description": "Turn Stoplight Spectral lint output into a rich, standalone HTML API governance report — inspired by newman-reporter-htmlextra. An API Commons tool.",
"type": "module",
"license": "Apache-2.0",
"author": "API Evangelist (https://apievangelist.com)",
"homepage": "https://reporter.apicommons.org",
"repository": {
"type": "git",
"url": "git+https://github.com/api-commons/spectral-reporter.git"
},
"bugs": {
"url": "https://github.com/api-commons/spectral-reporter/issues"
},
"keywords": [
"spectral",
"openapi",
"asyncapi",
"api-governance",
"linting",
"reporter",
"htmlextra",
"html-report",
"sarif",
"code-scanning",
"trends",
"api-commons"
],
"bin": {
"spectral-reporter": "bin/cli.js"
},
"exports": {
".": "./src/render-report.js",
"./trends": "./src/render-trends.js",
"./sarif": "./src/to-sarif.js"
},
"files": [
"bin/",
"src/render-report.js",
"src/render-trends.js",
"src/to-sarif.js",
"fixtures/spectral-results.json",
"fixtures/spectral.sarif",
"fixtures/totals.json",
"fixtures/history/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"test": "node --test",
"dev": "vite",
"build:site": "vite build",
"build": "vite build",
"preview": "vite preview",
"cli": "node bin/cli.js"
},
"devDependencies": {
"typescript": "^5.7.2",
"vite": "^5.4.11"
},
"publishConfig": {
"access": "public"
}
}