-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "api-quality-spectral-ruleset",
"version": "0.0.1",
"description": "Spectral ruleset by API Quality",
"main": "apq-spectral.yaml",
"scripts": {
"test": "jest --coverage --detectOpenHandles --no-cache --forceExit",
"make-badges": "coverage-badges"
},
"author": {
"name": "API Quality"
},
"license": "GNU AGPLv3",
"repository": {
"type": "git",
"url": "https://github.com/apiaddicts/apquality-spectral"
},
"devDependencies": {
"@stoplight/spectral-core": "^1.19.1",
"@stoplight/spectral-functions": "^1.9.0",
"@stoplight/spectral-ruleset-migrator": "^1.10.0",
"@stoplight/spectral-rulesets": "^1.20.2",
"@types/jest": "^29.5.14",
"coverage-badges-cli": "^2.1.0",
"jest": "^29.7.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"functions/*.js"
],
"coverageThreshold": {
"./functions/*.js": {
"statements": 80
}
},
"coverageReporters": [
"lcov",
"json-summary"
]
}
}