-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 1.7 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
63
64
65
66
67
68
69
70
71
{
"name": "protractor-sync",
"version": "6.0.2",
"description": "Protractor 5.x wrapper adding synchronous, polled selectors and expectations",
"keywords": [
"e2e",
"protractor",
"selenium",
"test",
"webdriver"
],
"homepage": "",
"bugs": {
"url": "https://github.com/blackboard/protractor-sync/issues"
},
"contributors": [
"Chris Scribner",
"Eric Sherman",
"Jeremy Casto",
"John Purcell",
"Ken Hill",
"Mindy Whitsitt",
"Pavel Karoukin"
],
"repository": {
"type": "git",
"url": "git://github.com/blackboard/protractor-sync.git"
},
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"engines": {
"node": ">=6.9.x"
},
"dependencies": {
"asyncblock": "^2.2.12",
"jquery": "3.3.1",
"mkdirp": "0.3.0"
},
"devDependencies": {
"@types/jasmine": "2.5.47",
"@types/mkdirp": "0.3.29",
"@types/node": "6.0.69",
"grunt": "0.4.5",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "1.0.0",
"grunt-contrib-copy": "1.0.0",
"grunt-protractor-runner": "5.0.0",
"grunt-shell": "2.1.0",
"grunt-ts": "6.0.0-beta.15",
"grunt-tslint": "5.0.1",
"husky": "0.13.3",
"in-publish": "2.0.0",
"jasmine-reporters": "2.1.1",
"jasmine-spec-reporter": "2.4.0",
"load-grunt-tasks": "3.5.2",
"protractor": "^5.3.0",
"tslint": "5.2.0",
"typescript": "2.3.0",
"webdriver-manager": "^12.0.6"
},
"peerDependencies": {
"protractor": "^5.3.0"
},
"scripts": {
"test": "grunt build verify test",
"start": "grunt develop",
"prepush": "grunt build verify test",
"prepublish": "in-publish && grunt build verify test package || not-in-publish"
}
}