-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.73 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.73 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"requires": true,
"lockfileVersion": 1,
"scripts": {
"email": "node ./features/support/emailReports.js",
"sample": "node ./node_modules/cucumber/bin/cucumber-js features/ -f json:reports/cucumber_report.json --tags '(@Course and @Assessment) and (not @wip)'",
"run": "node ./node_modules/cucumber/bin/cucumber-js features/ -f json:reports/cucumber_report.json --tags '(@Course and @Assessment) and (not @wip)'",
"test": "node ./node_modules/cucumber/bin/cucumber-js features/ASSESSMENT/tests/sac/multimodule-hw.feature -f json:reports/cucumber_report.json"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@nodebug/config": "1.0.0",
"@nodebug/emailer": "^1.0.0",
"@nodebug/logger": "1.0.0",
"@nodebug/restapi": "0.0.2",
"@nodebug/selenium": "1.9.3",
"@nodebug/testrail-uploader": "1.0.3",
"@nodebug/visual": "1.0.0",
"chai": "^4.3.3",
"chai-sorted": "latest",
"csvtojson": "latest",
"cucumber": "^6.0.5",
"faker": "^5.4.0",
"imap-simple": "latest",
"jsonfile": "latest",
"jsonwebtoken": "latest",
"lodash": "^4.17.21",
"mailparser": "^2.8.1",
"minimist": "latest",
"selenium-webdriver": "^4.0.0-beta.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"gherkin-lint": "^4.2.1",
"husky": "4.2.5",
"lint-staged": "10.1.5",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,yaml,yml,md,sh,groovy}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}