-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 2.6 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
{
"name": "@wirecard/shopware-ee",
"version": "1.1.0",
"scripts": {
"lint": "node_modules/.bin/eslint -c .eslintrc.json **/*.js **/*.js --ignore-path .eslintignore",
"test": "node_modules/.bin/mocha Tests/Selenium/**/*Test.js --timeout 150000",
"test:default": "node_modules/.bin/mocha Tests/Selenium/Payments/DefaultTest.js --timeout 120000",
"test:creditcard": "node_modules/.bin/mocha Tests/Selenium/Payments/CreditCardTest.js --timeout 120000",
"test:creditcard3ds": "node_modules/.bin/mocha Tests/Selenium/Payments/CreditCardThreeDTest.js --timeout 120000",
"test:creditcard1click": "node_modules/.bin/mocha Tests/Selenium/Payments/CreditCardOneClickTest.js --timeout 120000",
"test:alipay": "node_modules/.bin/mocha Tests/Selenium/Payments/AlipayTest.js --timeout 120000",
"test:ratepay": "node_modules/.bin/mocha Tests/Selenium/Payments/RatepayTest.js --timeout 6000000",
"test:ideal": "node_modules/.bin/mocha Tests/Selenium/Payments/IdealTest.js --timeout 120000",
"test:masterpass": "node_modules/.bin/mocha Tests/Selenium/Payments/MasterpassTest.js --timeout 120000",
"test:paypal": "node_modules/.bin/mocha Tests/Selenium/Payments/PaypalTest.js --timeout 180000",
"test:pia": "node_modules/.bin/mocha Tests/Selenium/Payments/PiaTest.js --timeout 120000",
"test:poi": "node_modules/.bin/mocha Tests/Selenium/Payments/PoiTest.js --timeout 120000",
"test:sepa": "node_modules/.bin/mocha Tests/Selenium/Payments/SepaTest.js --timeout 120000",
"test:sofort": "node_modules/.bin/mocha Tests/Selenium/Payments/SofortTest.js --timeout 120000",
"test:upi": "node_modules/.bin/mocha Tests/Selenium/Payments/UpiTest.js --timeout 120000",
"test:runner": "node Tests/Selenium/runner.js",
"test:payments": "node_modules/.bin/mocha $(if [ \"$GATEWAY\" = \"API-TEST\" ]; then find Tests/Selenium/Payments -name '*.js' -not -name 'MasterpassTest.js'; else find Tests/Selenium/Payments -name 'CreditCardThreeDTest.js'; fi) --timeout 6000000 --reporter mocha-multi-reporters --reporter-options configFile=./config.json"
},
"private": true,
"license": "GPL-3.0",
"devDependencies": {
"chai": "^4.1.2",
"ajv": "^5.0.0",
"chromedriver": "2.38.3",
"geckodriver": "^1.11.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^5.2.0",
"selenium-webdriver": "^4.0.0-alpha.1",
"mocha-junit-reporter": "^1.23.0",
"mocha-multi-reporters": "^1.1.7",
"mochawesome": "4.0.1"
}
}