-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.26 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "sap-cap-validator-plugin",
"version": "0.0.2",
"description": "SAP CAP plugin to validate incoming API requests.",
"author": "Mauricio Lauffer",
"license": "MIT",
"homepage": "https://github.com/mauriciolauffer/sap-cap-validator-plugin#readme",
"main": "cds-plugin.js",
"files": [
"cds-plugin.js"
],
"keywords": [
"sap",
"cap",
"cds",
"sap-cap",
"cap-js",
"nodejs",
"plugin",
"validator",
"validation"
],
"workspaces": [
".",
"examples/*"
],
"scripts": {
"lint": "eslint . --cache",
"lint:ci": "eslint . -f @microsoft/eslint-formatter-sarif -o eslint.sarif",
"test": "vitest --coverage",
"test:ci": "vitest run"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1"
},
"devDependencies": {
"@types/node": "^20.11.13",
"@vitest/coverage-v8": "^1.2.2",
"eslint": "^8.56.0",
"eslint-config-mlauffer-nodejs": "^1.4.6",
"supertest": "^6.3.4",
"vitest": "^1.2.2"
},
"peerDependencies": {
"@sap/cds": "^7.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mauriciolauffer/sap-cap-validator-plugin.git"
},
"bugs": {
"url": "https://github.com/mauriciolauffer/sap-cap-validator-plugin/issues"
}
}