* Bump @sap/cds from 5.9.8 to 6.0.1 Bumps [@sap/cds](https://cap.cloud.sap/) from 5.9.8 to 6.0.1. --- updated-dependencies: - dependency-name: "@sap/cds" dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update package-lock * Remove Node 12 pipeline * Add axios Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Christian Georgi <christian.georgi@sap.com>
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "@capire/samples",
|
|
"version": "2.0.0",
|
|
"description": "A monorepo with several samples for CAP.",
|
|
"repository": "https://github.com/sap-samples/cloud-cap-samples.git",
|
|
"author": "daniel.hutzel@sap.com",
|
|
"dependencies": {
|
|
"@sap/cds": ">=5.5.3"
|
|
},
|
|
"workspaces": [
|
|
"./*/"
|
|
],
|
|
"devDependencies": {
|
|
"axios": "^0",
|
|
"chai": "^4.3.4",
|
|
"chai-as-promised": "^7.1.1",
|
|
"chai-subset": "^1.6.0",
|
|
"semver": "^7",
|
|
"sqlite3": "^5"
|
|
},
|
|
"scripts": {
|
|
"cleanup": "rm -rf node_modules && rm -rf */node_modules && rm -rf */*/node_modules",
|
|
"registry": "node .registry/server.js",
|
|
"bookshop": "cds watch bookshop",
|
|
"fiori": "cds watch fiori",
|
|
"hello": "cds watch hello",
|
|
"media": "cds watch media",
|
|
"mocha": "npx mocha || echo",
|
|
"jest": "npx jest",
|
|
"start": "cds watch fiori",
|
|
"test": "npm run jest -- --silent",
|
|
"test:hello": "cd hello && npm test"
|
|
},
|
|
"jest": {
|
|
"testTimeout": 20000,
|
|
"testMatch": [
|
|
"**/*.test.js"
|
|
]
|
|
},
|
|
"mocha": {
|
|
"recursive": true,
|
|
"parallel": true
|
|
},
|
|
"license": "SAP SAMPLE CODE LICENSE",
|
|
"private": true
|
|
}
|