-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
79 lines (79 loc) · 1.73 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@cap-js/postgres",
"version": "1.10.4",
"description": "CDS database service for Postgres",
"homepage": "https://github.com/cap-js/cds-dbs/tree/main/postgres#cds-database-service-for-postgres",
"repository": {
"type": "git",
"url": "https://github.com/cap-js/cds-dbs"
},
"bugs": {
"url": "https://github.com/cap-js/cds-dbs/issues"
},
"keywords": [
"CAP",
"CDS",
"Postgres"
],
"author": "SAP SE (https://www.sap.com)",
"main": "index.js",
"files": [
"cds-plugin.js",
"lib",
"CHANGELOG.md"
],
"scripts": {
"test": "npm start && cds-test $(../test/find)",
"start": "docker compose -f pg-stack.yml up -d"
},
"dependencies": {
"@cap-js/db-service": "^1.14.1",
"pg": "^8"
},
"peerDependencies": {
"@sap/cds": ">=7.6",
"@sap/cds-dk": ">=7.5"
},
"peerDependenciesMeta": {
"@sap/cds-dk": {
"optional": true
}
},
"cds": {
"requires": {
"kinds": {
"sql": {
"[production]": {
"kind": "postgres"
},
"[pg!]": {
"kind": "postgres",
"credentials": {
"host": "localhost",
"port": 5432,
"user": "postgres",
"password": "postgres",
"database": "postgres"
}
}
},
"postgres": {
"impl": "@cap-js/postgres",
"dialect": "postgres",
"vcap": {
"label": "postgresql-db"
},
"schema_evolution": "auto"
}
},
"db": "sql"
},
"schema": {
"buildTaskType": {
"name": "postgres",
"description": "Postgres database build plugin"
}
}
},
"license": "SEE LICENSE"
}