-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.18 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": "ui-tests",
"version": "1.0.0",
"description": "Examples of using protractor for different non-angular sites tests",
"main": "",
"scripts": {
"cleanup": "rimraf allure-results allure-report",
"test": "npm run cleanup && protractor protractor.conf.js",
"test:firefox": "set CAPABILITY_NAME=firefox&& npm run cleanup && protractor protractor.conf.js",
"test:multiple": "set CAPABILITY_NAME=multiple&& npm run cleanup && protractor protractor.conf.js",
"test:headless-chrome": "set CAPABILITY_NAME=headless-chrome&& npm run cleanup && protractor protractor.conf.js",
"report": "allure generate && allure open",
"lint": "eslint ."
},
"keywords": [],
"author": "Pavlo Sprogis <[email protected]>",
"license": "ISC",
"devDependencies": {
"allure-commandline": "^2.13.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jasmine": "^4.1.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"jasmine-allure-reporter": "^1.0.2",
"jasmine-custom-reporters": "^1.2.1",
"jasmine-spec-reporter": "^6.0.0",
"log4js": "^6.3.0",
"protractor": "^7.0.0"
}
}