forked from twosigma/beakerx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (20 loc) · 836 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "beakerx-tests",
"version": "1.0.0",
"author": "Two Sigma Open Source, LLC",
"license": "Apache-2.0",
"dependencies": {
"webdriverio": "4.12.0",
"selenium-standalone": "6.12.0",
"wdio-jasmine-framework": "0.3.1",
"wdio-spec-reporter": "0.1.0",
"copyfiles": "1.2.0",
"resemblejs": "2.10.1"
},
"scripts": {
"wdio-config": "copyfiles wdio.conf.js ./node_modules/.bin",
"setup-server": "./node_modules/.bin/selenium-standalone install --drivers.chrome.version=2.36 --drivers.chrome.baseURL=https://chromedriver.storage.googleapis.com",
"start-server": "./node_modules/.bin/selenium-standalone start --drivers.chrome.version=2.36 --drivers.chrome.baseURL=https://chromedriver.storage.googleapis.com",
"test": "./node_modules/.bin/wdio ./node_modules/.bin/wdio.conf.js"
}
}