-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 866 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
{
"name": "selenium-mocha-chai",
"author": "Benedict Mateo",
"version": "0.0.1",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "npm run selenium --silent",
"selenium": "mocha --timeout 10000 --bail --require babel-core/register --require babel-polyfill ./src/index.js"
},
"license": "ISC",
"dependencies": {
"chai": "^4.2.0",
"selenium-webdriver": "^4.0.0-alpha.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"chai-as-promised": "^7.1.1",
"chromedriver": "^76.0.0",
"geckodriver": "^1.16.2",
"mocha": "^6.2.0",
"rimraf": "^3.0.0"
}
}