-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.52 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
{
"name": "spectral-bugs-demo",
"version": "1.0.0",
"description": "Some rulesets samples demonstrating Spectral bugs and possible workarounds",
"main": "index.js",
"scripts": {
"test": "npx mocha ./tests/spectral.test.js --disable-completeness --disable-then-count --disable-given-count --silent-skip",
"spectral-run-recursive-descent": "spectral lint -r spectral/recursive-descent-ignores-first-level/recursive-descent-ignores-first-level.spectral-v6.yaml spectral/recursive-descent-ignores-first-level/samples/recursive-descent-and-filter.openapi.yaml",
"spectral-run-regex-crash": "spectral lint -r spectral/regex-filter-targeting-non-existing-property-crashes/crash.spectral-v6.yaml spectral/regex-filter-targeting-non-existing-property-crashes/samples/crash.openapi.yaml",
"spectral-run-regex-workaround": "spectral lint -r spectral/regex-filter-targeting-non-existing-property-crashes/work-around.spectral-v6.yaml spectral/regex-filter-targeting-non-existing-property-crashes/samples/crash.openapi.yaml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/postman-open-technologies/spectral-bugs-demo.git"
},
"keywords": [
"spectral"
],
"author": "Arnaud Lauret",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/postman-open-technologies/spectral-bugs-demo/issues"
},
"homepage": "https://github.com/postman-open-technologies/spectral-bugs-demo#readme",
"devDependencies": {
"@postman-open-tech/spectral-test-suite": "^0.1.1",
"mocha": "^10.2.0"
}
}