-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
32 lines (32 loc) · 855 Bytes
/
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
{
"name": "webloginauto",
"version": "1.0.0",
"description": "Demo of js web automation",
"main": "./src/index.js",
"scripts": {
"start": "node ./src/index.js",
"test": "./node_modules/.bin/cucumber-js tests/features --require tests/features/support --require tests/step_definitions --world-parameters {\\\"browserName\\\":\\\"chrome\\\"} --format json:tests/results/chrome.json",
"testReport": "node ./tests/features/support/generateReport"
},
"keywords": [
"js",
"selenium",
"automation"
],
"author": "mvemjsun",
"license": "ISC",
"dependencies": {
"express": "4.16.3",
"require": "2.4.20",
"pug": "2.0.3"
},
"devDependencies": {
"chai": "4.1.2",
"cucumber": "4.2.1",
"selenium-webdriver": "3.6.0",
"cucumber-html-reporter": "4.0.3"
},
"config": {
"port": 9294
}
}