-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
46 lines (46 loc) · 1.46 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
43
44
45
46
{
"name": "protractor-helper",
"version": "4.2.1",
"scripts": {
"lint": "npx eslint src/ && npx eslint test/",
"lint:fix": "npx eslint --fix src/ && npx eslint --fix test/",
"webdriver-update": "webdriver-manager update --versions.chrome 87.0.4280.88 --gecko false",
"test:e2e": "npm run webdriver-update && protractor test/e2e/protractor.conf.js",
"test:unit": "jasmine test/spec/*.spec.js",
"test": "npm run test:unit && npm run test:e2e",
"prettify": "prettier --write **/*.js **/*.md package.json sampleApp/**/* --print-width 120"
},
"description": "Write robust and flakiness-free tests with Protractor",
"main": "index.js",
"keywords": [
"protractor",
"e2e",
"testing"
],
"repository": {
"type": "git",
"url": "https://github.com/wlsf82/protractor-helper"
},
"author": "Walmyr Filho <[email protected]> (https://walmyrfilho.com)",
"contributors": [
"Paulo Gonçalves <[email protected]> (https://www.linkedin.com/in/paulo-goncalves)",
"Lucas Amaral (https://github.com/doamaral)",
"Michiel Cuijpers (https://github.com/MichielCuijpers)",
"Ghazi Khan (https://codewithghazi.com)",
"Pedro Hyvo (https://www.linkedin.com/in/pedrohyvo/)"
],
"files": [
"src",
"index.d.ts"
],
"license": "MIT",
"peerDependencies": {
"protractor": ">= 5.4.2"
},
"devDependencies": {
"eslint": "^6.6.0",
"jasmine": "^3.4.0",
"prettier": "1.15.2",
"protractor": "^7.0.0"
}
}