-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.71 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
{
"name": "sroc-acceptance-tests",
"version": "1.0.0",
"description": "Automated acceptance tests for the SROC Tactical Charging Module",
"main": "index.js",
"scripts": {
"cy:open": "rm -f cypress/reports/json/*.json && cypress open",
"cy:open:local": "rm -f cypress/reports/json/*.json && cypress open --env environment=local",
"cy:open:dev": "rm -f cypress/reports/json/*.json && cypress open --env environment=dev",
"cy:open:tst": "rm -f cypress/reports/json/*.json && cypress open --env environment=tst",
"cy:open:pre": "rm -f cypress/reports/json/*.json && cypress open --env environment=pre",
"cy:run": "rm -f cypress/reports/json/*.json && cypress run",
"cy:run:local": "rm -f cypress/reports/json/*.json && cypress run --env environment=local",
"cy:run:dev": "rm -f cypress/reports/json/*.json && cypress run --env environment=dev",
"cy:run:tst": "rm -f cypress/reports/json/*.json && cypress run --env environment=tst",
"cy:run:pre": "rm -f cypress/reports/json/*.json && cypress run --env environment=pre",
"cy:run:ci": "rm -f cypress/reports/json/*.json && cypress-tags run --env environment=ci TAGS=\"ci\"",
"cy:wip:local": "rm -f cypress/reports/json/*.json && cypress open --env environment=local,TAGS=\"@wip\"",
"cy:wip:dev": "rm -f cypress/reports/json/*.json && cypress open --env environment=dev,TAGS=\"@wip\"",
"cy:wip:tst": "rm -f cypress/reports/json/*.json && cypress open --env environment=tst,TAGS=\"@wip\"",
"cy:wip:pre": "rm -f cypress/reports/json/*.json && cypress open --env environment=pre,TAGS=\"@wip\"",
"lint": "standard",
"test": "rm cypress/reports/json/*.json && cypress run",
"report": "node cypress/reports/report_generator.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DEFRA/sroc-acceptance-tests.git"
},
"author": "Department for Environment, Food & Rural Affairs",
"license": "OGL-UK-3.0",
"bugs": {
"url": "https://github.com/DEFRA/sroc-acceptance-tests/issues"
},
"homepage": "https://github.com/DEFRA/sroc-acceptance-tests#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.55.0",
"@faker-js/faker": "^6.0.0",
"cucumber-html-reporter": "^5.5.0",
"cypress": "^9.5.2",
"cypress-cucumber-preprocessor": "^4.3.1",
"cypress-dotenv": "^2.0.0",
"dotenv": "^16.0.0",
"path": "^0.12.7"
},
"devDependencies": {
"standard": "^16.0.4"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true,
"cucumberJson": {
"generate": true,
"outputFolder": "cypress/reports/json",
"filePrefix": "",
"fileSuffix": ".cucumber"
}
},
"standard": {
"globals": [
"cy",
"Cypress",
"expect"
]
}
}