-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 816 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
{
"name": "com.tech.selenium",
"version": "1.0.0",
"description": "Selenium WebdriverJS Mocha Template to getting started with",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/_mocha --require @babel/register --timeout 60000 tests"
},
"author": "Sridhar Bandi",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"chromedriver": "^84.0.1",
"edgedriver": "^4.17134.1",
"geckodriver": "^1.19.1",
"iedriver": "^3.14.2",
"mocha": "^7.1.2",
"operadriver": "^1.0.0",
"selenium-webdriver": "^4.0.0-alpha.7"
},
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.2"
}
}