-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "protractor_example",
"version": "2.0.0",
"description": "An example Protractor project that makes use of page objects...",
"engines": {
"node": "8.12.0"
},
"scripts": {
"protractor": "node_modules/.bin/protractor",
"prepare": "node_modules/.bin/webdriver-manager update",
"update": "node_modules/.bin/webdriver-manager update",
"test": "./flake conf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/qualityshepherd/protractor_example.git"
},
"keywords": [
"protractor",
"page objects",
"tests",
"automation",
"webdriver"
],
"author": "Brine",
"license": "ISC",
"bugs": {
"url": "https://github.com/qualityshepherd/protractor_example/issues"
},
"homepage": "https://github.com/qualityshepherd/protractor_example",
"dependencies": {
"protractor": "7.0.0",
"chance": "1.0.16",
"jasmine-spec-reporter": "4.2.1",
"protractor-flake": "4.0.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1"
}
}