-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 2.55 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 2.55 KB
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
{
"name": "shieldguard",
"version": "1.0.0",
"private": true,
"description": "Node.js end-to-end auth and session automation suite for SHIELD",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "npm run test:e2e",
"test:e2e": "node scripts/run-e2e-with-diagnostics.cjs",
"test:e2e:raw": "jest --runInBand --config jest.config.cjs",
"test:e2e:auth": "jest --runInBand --config jest.config.cjs tests/auth",
"test:e2e:auth-otp-lockout": "jest --runInBand --config jest.config.cjs tests/auth/otp-lockout.e2e.test.js",
"test:e2e:amenities-meeting": "jest --runInBand --config jest.config.cjs tests/amenities-meeting/amenities-meeting-flows.e2e.test.js",
"test:e2e:helpdesk-emergency": "jest --runInBand --config jest.config.cjs tests/helpdesk-emergency/helpdesk-emergency-flows.e2e.test.js",
"test:e2e:accounting": "jest --runInBand --config jest.config.cjs tests/accounting/accounting-treasury-flows.e2e.test.js",
"test:e2e:billing": "jest --runInBand --config jest.config.cjs tests/billing/billing-payments-contract-smoke.e2e.test.js",
"test:e2e:asset-complaint": "jest --runInBand --config jest.config.cjs tests/asset-complaint/asset-complaint-workflows.e2e.test.js",
"test:e2e:visitor": "jest --runInBand --config jest.config.cjs tests/visitor/visitor-gatepass-flows.e2e.test.js",
"test:e2e:staff-payroll": "jest --runInBand --config jest.config.cjs tests/staff-payroll/staff-payroll-flows.e2e.test.js",
"test:e2e:utility-marketplace": "jest --runInBand --config jest.config.cjs tests/utility-marketplace/utility-marketplace-flows.e2e.test.js",
"test:e2e:communication": "jest --runInBand --config jest.config.cjs tests/communication/communication-flows.e2e.test.js",
"test:e2e:config-document-analytics": "jest --runInBand --config jest.config.cjs tests/config-document-analytics/config-document-analytics-flows.e2e.test.js",
"test:e2e:role-matrix": "jest --runInBand --config jest.config.cjs tests/authorization/role-permission-matrix.e2e.test.js",
"test:e2e:edge-permutations": "jest --runInBand --config jest.config.cjs tests/edge-permutations/domain-edge-permutations.e2e.test.js",
"test:e2e:watch": "jest --watch --config jest.config.cjs",
"shield:start": "node scripts/shield-runtime.cjs start",
"shield:stop": "node scripts/shield-runtime.cjs stop",
"shield:inspect": "node scripts/inspect-containers.cjs --logs"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"dotenv": "^16.4.5",
"supertest": "^7.1.1",
"yaml": "^2.8.1"
},
"devDependencies": {
"jest": "^29.7.0"
}
}