forked from marcelmokos/protractor-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.92 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "protractor-starter",
"version": "0.0.6",
"description": "protractor-starter end-to-end tests setup also for non angular application",
"main": "index.js",
"repository": {
"url": "https://github.com/marcelmokos/protractor-starter.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/marcelmokos/protractor-starter/issues"
},
"keywords": [
"protractor",
"starter",
"page object pattern",
"testing",
"end to end testing"
],
"author": "Marcel Mokoš",
"license": "MIT",
"scripts": {
"start": "yarn run test",
"pretest": "yarn install && yarn run lint:fix",
"test": "yarn run protractor --",
"test:multiple": "yarn run test -- --capabilities.shardTestFiles=true --capabilities.maxInstances=3",
"protractor": "babel-node node_modules/.bin/protractor protractor-conf.js",
"prettier": "prettier --trailing-comma all --bracket-spacing=false --write \"{src,spec,__{tests,mocks}__}/**/*.js\"",
"lint": "eslint \"spec/**\" --cache",
"lint:fix": "yarn run prettier && yarn run lint -- --fix",
"lint:staged": "yarn lint:fix -- --rule 'no-console:2' --rule 'no-debugger:2' --rule 'protractor/no-browser-pause:2'",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"lint:staged",
"git add"
]
},
"dependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"chromedriver": "^2.33.2",
"jasmine-spec-reporter": "^4.2.1",
"node-fetch": "^1.7.3",
"protractor": "^5.2.0"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-async-await": "^0.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-protractor": "^1.34.1",
"husky": "^0.14.3",
"lint-staged": "^5.0.0",
"prettier": "^1.8.2"
}
}