-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.33 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": "treetracker-e2e-automation",
"version": "0.0.1",
"scripts": {
"pre-commit-check": "eslint tests",
"report": "allure serve output",
"build-docker": "docker build -f CI/docker/Dockerfile -t codeceptjs .",
"docker": "docker run -v /var/run/docker.sock:/var/run/docker.sock -e testFilter=$npm_package_config_filter -e environment=$npm_package_config_env -e GREP=$npm_package_config_grep codeceptjs",
"test": "environment=$npm_package_config_env codeceptjs run-workers --suites 2 parallel --grep=$npm_package_config_grep --verbose"
},
"config": {
"filter": "./tests/*Test.js",
"env": "prod",
"showscreen": "false",
"grep": "@test"
},
"pre-commit": [
"pre-commit-check"
],
"devDependencies": {
"assert": "1.5.0",
"axios": "0.21.0",
"casual": "1.6.2",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"codeceptjs": "3.0.4",
"eslint": "^7.13.0",
"eslint-plugin-codeceptjs": "^1.3.0",
"http-status-codes": "1.4.0",
"is-array-sorted": "^2.0.0",
"lodash": "4.17.19",
"mocha": "8.2.1",
"mocha-junit-reporter": "^1.23.2",
"mocha-multi": "1.1.3",
"parse-function": "5.6.10",
"parse-json": "4.0.0",
"pre-commit": "^1.2.2",
"puppeteer": "^5.5.0",
"set-cookie-parser": "2.4.6",
"sync-request": "6.1.0",
"unirest": "^0.6.0"
}
}