-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 879 Bytes
/
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
{
"name": "protractor-example",
"version": "0.0.1",
"private": true,
"author": "Steve Walton",
"engines": {
"node" : ">=7.2.0",
"npm" : ">=3.10.9"
},
"engineStrict": true,
"scripts": {
"webdriver-update": "webdriver-manager update",
"webdriver-start": "webdriver-manager start",
"webdriver-stop": "webdriver-manager stop",
"protractor-local": "protractor test/e2e/config/local.js",
"lint": "jshint test/e2e/**/**.js & eslint test/e2e/**/**.js",
"test": "npm run lint & npm run protractor-local"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"eslint": "^4.3.0",
"eslint-plugin-protractor": "^1.40.0",
"jasmine": "^2.6.0",
"jshint": "^2.9.5",
"protractor": "5.1.2",
"webdriver-manager": "^12.0.6"
}
}