-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "@cap-js-community/cds-cucumber",
"version": "0.4.3",
"description": "A library to write behaviour-driven tests for CAP applications",
"homepage": "https://cap-js-community.github.io/cds-cucumber/",
"keywords": [
"Cucumber",
"CAP",
"CDS"
],
"author": "SAP SE (https://www.sap.com)",
"license": "SEE LICENSE IN LICENSE",
"repository": "cap-js-community/cds-cucumber",
"bin": {
"cds-add-cucumber": "./bin/cds-add-cucumber.js",
"cds-add-cucumber-plugin": "./cds-plugins/addCdsPlugin.js",
"cds-cucumber-build-ui5-tgz": "./cds-plugins/local-ui5-tgz/build.sh"
},
"main": "./lib/index.js",
"files": [
"bin",
"lib",
"cds-plugins/local-ui5-build",
"cds-plugins/local-ui5-tgz",
"CHANGELOG.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"check": "./test/bin/check.sh",
"prepare:test": "./test/bin/prepare.sh",
"test": "./test/bin/test.sh",
"test:bookshop": "./test/bin/testBookshop.sh",
"test:sflight": "./test/bin/testSFlightNode.sh"
},
"dependencies": {
"@sap-cloud-sdk/http-client": "^3",
"@sap-cloud-sdk/resilience": "^3",
"chai": "^4",
"chai-shallow-deep-equal": "^1",
"chai-sorted": "^0.2",
"chromedriver": "latest",
"selenium-webdriver": "^4",
"sqlite3": "^5"
},
"peerDependencies": {
"@cucumber/cucumber": "^10",
"@sap/cds": ">=7"
}
}