forked from cap-js-community/odata-v2-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.4 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@cap-js-community/odata-v2-adapter",
"version": "1.13.1",
"description": "OData V2 adapter for CDS",
"homepage": "https://cap.cloud.sap/",
"engines": {
"node": ">=18"
},
"author": "Oliver Klemenz <[email protected]>, Richard Lindner <[email protected]>",
"keywords": [
"COV2AP",
"CAP",
"CDS",
"ODATA",
"V2",
"V4"
],
"files": [
"src",
"cds-plugin.js",
"CHANGELOG.md"
],
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"run": "cd ./test/_env && cds-serve",
"start": "npm start --prefix=./test/_env",
"start:debug": "CDS_LOG_LEVELS_COV2AP=debug npm start",
"start:file": "npm run start:file --prefix=./test/_env",
"start:root": "npm run start:root --prefix=./test/_env",
"start:hana": "npm start --prefix=./test-hana/_env",
"start:hana:debug": "CDS_LOG_LEVELS_COV2AP=debug npm run start:hana",
"start:postgres": "npm start --prefix=./test-postgres/_env",
"start:postgres:debug": "CDS_LOG_LEVELS_COV2AP=debug npm start --prefix=./test-postgres/_env",
"test": "jest",
"test:update": "npm test -- -u",
"test:debug": "CDS_LOG_LEVELS_COV2AP=debug npm run test",
"test:unit": "jest --testPathPattern='/test/'",
"test:external": "npm run test:unit -- --config=jest.external.config.js",
"test:unit:file": "CDS_ENV=testdb npm run test:unit",
"test:hana": "jest --testPathPattern='/test-hana/' --collectCoverage=false",
"test:postgres": "jest --testMatch=**/*.test.js --testPathPattern='/test-postgres/' --collectCoverage=false",
"build:unit": "npm run build --prefix=./test/_env",
"build:hana": "npm run build --prefix=./test-hana/_env",
"build:postgres": "npm run build --prefix=./test-postgres/_env",
"deploy:unit": "cd ./test/_env && npm run test:deploy",
"deploy:hana": "npm run test:deploy --prefix=./test-hana/_env",
"deploy:postgres": "npm run test:deploy --prefix=./test-postgres/_env",
"lint": "npm run eslint && npm run prettier",
"lint:ci": "npm run eslint:ci && npm run prettier:ci",
"eslint": "eslint --fix .",
"eslint:ci": "eslint .",
"prettier": "prettier \"**/*.{js,json,md,yml,yaml}\" --write --log-level error",
"prettier:ci": "prettier \"**/*.{js,json,md,yml,yaml}\" --check",
"upgrade-lock": "rm -rf package-lock.json node_modules && npm i --package-lock=true",
"prepareRelease": "npm prune --production",
"audit": "npm audit --only=prod"
},
"dependencies": {
"body-parser": "^1.20.2",
"body-parser-xml": "^2.0.5",
"express": "^4.19.2",
"express-fileupload": "^1.5.1",
"http-proxy-middleware": "^3.0.0",
"superagent": "^9.0.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@cap-js-community/odata-v2-adapter": "./",
"@cap-js/hana": "^1.1.1",
"@cap-js/postgres": "^1.10.0",
"@cap-js/sqlite": "^1.7.3",
"@sap/cds": "^8.1.0",
"@sap/cds-dk": "^8.1.0",
"@types/express": "^4.17.21",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"compression": "^1.7.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"supertest": "^7.0.0",
"typescript": "^5.5.4"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/cap-js-community/odata-v2-adapter.git"
}
}