forked from hmcts/unspec-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.15 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
{
"name": "unspec-service",
"version": "1.0.0",
"description": "Civil Unspecified e2e tests",
"scripts": {
"lint": "eslint e2e",
"test": "npx codeceptjs run --steps",
"test:api": "MOCHAWESOME_REPORTFILENAME=api npx codeceptjs run --grep @api-tests --reporter mocha-multi --verbose",
"test:smoke": "MOCHAWESOME_REPORTFILENAME=smoke npx codeceptjs run --grep @smoke-tests --reporter mocha-multi --verbose",
"test:functional": "MOCHAWESOME_REPORTFILENAME=functional npx codeceptjs run --invert --grep @smoke-tests --reporter mocha-multi --verbose",
"test:e2e": "MOCHAWESOME_REPORTFILENAME=functional npx codeceptjs run --grep @claim-tests --reporter mocha-multi --verbose"
},
"husky": {
"hooks": {
"pre-push": "yarn lint"
}
},
"license": "MIT",
"devDependencies": {
"codeceptjs": "^2.6.6",
"eslint": "^7.3.1",
"eslint-plugin-codeceptjs": "^1.3.0",
"husky": "^4.2.5",
"mocha-multi": "^1.1.3",
"mochawesome": "^6.1.1",
"puppeteer": "^4.0.1",
"node-fetch": "^2.6.1",
"totp-generator": "^0.0.7",
"http-proxy-agent": "^4.0.1",
"https-proxy-agent": "^5.0.0",
"uuid": "^3.4.0"
}
}