-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.69 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.69 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": "js-webinar",
"version": "1.0.0",
"description": "Tasks for JS webinar",
"scripts": {
"clean": "rimraf reports",
"run:mocha": "mocha --reporter mocha-multi-reporters --reporter-options configFile=reporter.config.json",
"test:module-1": "cross-env MOCHA_FILE=./reports/module-1.xml npm run run:mocha -- module-1/test/**/*.spec.js",
"test:module-2": "cross-env MOCHA_FILE=./reports/module-2.xml npm run run:mocha -- module-2/test/**/*.spec.js",
"test:module-3": "cross-env MOCHA_FILE=./reports/module-3.xml npm run run:mocha -- module-3/test/**/*.spec.js",
"test:module-4": "cross-env MOCHA_FILE=./reports/module-4.xml npm run run:mocha -- module-4/test/**/*.spec.js",
"test:module-5": "cucumber-js module-5/features/EPAM.feature --require module-5/step_definitions/*.js --format summary --format node_modules/cucumber-junit-formatter:reports/module-5.xml",
"test:plus": "cross-env MOCHA_FILE=./reports/module-plus.xml npm run run:mocha -- plus/test/**/*.spec.js",
"test": "npm-run-all -c clean test:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idea-pool/js-webinar.git"
},
"author": "Idea Pool <ideapool@epam.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/idea-pool/js-webinar/issues"
},
"homepage": "https://github.com/idea-pool/js-webinar#readme",
"engines": {
"node": ">=12"
},
"dependencies": {
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"cucumber": "^6.0.7",
"cucumber-junit-formatter": "^0.2.2",
"mocha": "^10.0.0",
"mocha-multi-reporters": "^1.5.1",
"mocha-junit-reporter": "^2.0.2",
"npm-run-all": "4.1.5",
"rimraf": "^3.0.2",
"sinon": "^14.0.0"
}
}