-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.07 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.07 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
{
"name": "@cap-js/graphql",
"version": "0.15.0",
"description": "CDS protocol adapter for GraphQL",
"keywords": [
"CAP",
"CDS",
"GraphQL"
],
"author": "SAP SE (https://www.sap.com)",
"license": "Apache-2.0",
"repository": "cap-js/graphql",
"homepage": "https://cap.cloud.sap/",
"main": "index.js",
"files": [
"app/",
"lib/",
"index.js",
"cds-plugin.js",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"prettier": "npm_config_yes=true npx prettier@latest --write app lib test",
"prettier:check": "npm_config_yes=true npx prettier@latest --check app lib test",
"lint": "npm_config_yes=true npx eslint@latest .",
"test": "npx jest --silent",
"test:generate-schemas": "node ./test/scripts/generate-schemas.js"
},
"dependencies": {
"graphql": "^16",
"graphql-http": "^1.18.0"
},
"peerDependencies": {
"@sap/cds": ">=9"
},
"devDependencies": {
"@cap-js/cds-test": ">=0",
"@cap-js/graphql": "file:.",
"@cap-js/sqlite": ">=2"
}
}