forked from angular/protractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.23 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "protractor",
"description": "Webdriver E2E test wrapper for Angular.",
"version": "7.0.0",
"homepage": "https://github.com/angular/protractor",
"keywords": [
"angular",
"test",
"testing",
"webdriver",
"webdriverjs",
"selenium"
],
"author": "Julie Ralph <[email protected]>",
"dependencies": {
"@types/q": "^0.0.32",
"@types/selenium-webdriver": "^3.0.0",
"blocking-proxy": "^1.0.0",
"browserstack": "^1.5.1",
"chalk": "^1.1.3",
"glob": "^7.0.3",
"jasmine": "2.8.0",
"jasminewd2": "^2.1.0",
"q": "1.4.1",
"saucelabs": "^1.5.0",
"selenium-webdriver": "3.6.0",
"source-map-support": "~0.4.0",
"webdriver-js-extender": "2.1.0",
"webdriver-manager": "^12.1.7",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/chalk": "^0.4.28",
"@types/glob": "^5.0.29",
"@types/jasmine": "^2.5.47",
"@types/jasminewd2": "^2.0.0",
"@types/minimatch": "^2.0.28",
"@types/node": "^6.0.46",
"@types/yargs": "ts2.6",
"body-parser": "^1.19.0",
"chai": "~3.5.0",
"chai-as-promised": "~5.3.0",
"clang-format": "1.0.49",
"expect.js": "~0.3.1",
"express": "^4.17.1",
"gulp": "^4.0.2",
"gulp-clang-format": "1.0.23",
"gulp-tslint": "^7.0.1",
"jshint": "^2.11.0",
"lodash": "^4.17.15",
"marked": "^0.3.3",
"mocha": "^7.1.2",
"natives": "^1.1.6",
"rimraf": "~2.5.3",
"run-sequence": "^1.1.5",
"semver": "^5.3.0",
"tslint": "^5.20.1",
"tslint-eslint-rules": "^3.1.0",
"typescript": "~2.6.2",
"vrsource-tslint-rules": "^6.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/angular/protractor.git"
},
"bin": {
"protractor": "bin/protractor",
"webdriver-manager": "bin/webdriver-manager"
},
"main": "built/index.js",
"typings": "built/index.d.ts",
"scripts": {
"format": "gulp format",
"install_testapp": "cd testapp && npm install",
"prepublish": "gulp prepublish",
"pretest": "gulp pretest",
"start": "cd testapp && npm start",
"test": "node scripts/test.js",
"website": "cd website && npm start",
"compile_to_es5": "gulp compile_to_es5"
},
"license": "MIT",
"engines": {
"node": ">=10.13.x"
}
}