-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.61 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
34
35
36
37
38
39
40
41
42
{
"name": "codeceptjs-starter",
"version": "0.0.1",
"description": "Acceptance Testing with CodeceptJS",
"repository": "https://yourgiturl.git",
"author": "John Smith <[email protected]>",
"license": "MIT",
"scripts": {
"codeceptjs": "codeceptjs run --reporter mocha-multi",
"install:selenium": "npm install -g [email protected] && selenium-standalone install",
"start:serverwin": "cmd /c start selenium-standalone start",
"start:serverlinux": "selenium-standalone start",
"shell": "codeceptjs shell",
"test": "codeceptjs run-multiple --all --reporter mocha-multi",
"test:rest": "codeceptjs run --grep 'rest' --reporter mocha-multi",
"test:puppeteer": "codeceptjs run -c ./configs/codecept.conf.puppeteer.js",
"test:multi_chrome": "codeceptjs run-multiple chrome:chrome --reporter mocha-multi",
"test:multi_ie": "codeceptjs run-multiple \"ie:internet explorer\" --reporter mocha-multi",
"disable:iezones": "Powershell -ExecutionPolicy bypass -File ./extras/Disable-InternetExplorerZones.ps1"
},
"dependencies": {
"chai": "^4.1.2",
"codeceptjs": "^1.1.5",
"codeceptjs-webdriverio": "^1.0.1",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"mocha-junit-reporter": "^1.13.0",
"mocha-multi": "^0.11.0",
"mochawesome": "^2.2.0",
"nightmare": "^2.10.0",
"selenium-standalone": "^6.4.0",
"unirest": "^0.5.1"
},
"devDependencies": {
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"puppeteer": "^1.1.0"
}
}