-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.04 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": "mango_js",
"version": "2.0.0",
"description": "BDD based test automation framework suite built over cucumber-js, Selenium and Superagent",
"scripts": {
"bvt": "cucumber-js features/**/bvt.feature",
"api": "cucumber-js */*api.feature --tags @high --format json:testreport.json",
"ui": "cucumber-js */*ui.feature --tags @high --format json:testreport.json",
"demo": "cucumber-js features/ --tags @high --format json:testreport.json",
"debug": "node --inspect=1337 --debug-brk --nolazy node_modules/cucumber/bin/cucumber-js --tags @ui --format json:testreport.json",
"dummy": "cucumber-js */**/dummy.feature --format json:testreport.json"
},
"chromeOptions": {
"args": [
"--DNS-prefetch-disable"
]
},
"author": "Rahul Singh",
"license": "ISC",
"dependencies": {
"assert": "^1.4.1",
"chromedriver": "^86.0.0",
"dotenv": "^8.0.0",
"fs": "0.0.1-security",
"lodash": "^4.17.19",
"path": "^0.12.7",
"selenium-webdriver": "^4.0.0-alpha.5",
"superagent": "^5.1.0"
},
"devDependencies": {
"cucumber": "^6.0.5"
}
}