forked from angular/protractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.89 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
{
"name": "protractor",
"description": "Webdriver E2E test wrapper for Angular.",
"homepage": "https://github.com/angular/protractor",
"keywords": [
"angular",
"test",
"testing",
"webdriver",
"webdriverjs",
"selenium"
],
"author": "Julie Ralph <ju.ralph@gmail.com>",
"dependencies": {
"@types/jasmine": "^2.2.31",
"@types/node": "^6.0.35",
"adm-zip": "0.4.7",
"chalk": "^1.1.3",
"glob": "^7.0.3",
"jasmine": "2.4.1",
"jasminewd2": "0.0.10",
"optimist": "~0.6.0",
"q": "1.4.1",
"saucelabs": "~1.3.0",
"selenium-webdriver": "2.53.3",
"source-map-support": "~0.4.0",
"webdriver-manager": "^10.2.2"
},
"devDependencies": {
"@types/chalk": "^0.4.28",
"@types/glob": "^5.0.29",
"@types/minimatch": "^2.0.28",
"@types/minimist": "^1.1.28",
"@types/optimist": "0.0.28",
"@types/q": "0.0.29",
"body-parser": "~1.15.2",
"chai": "~3.5.0",
"chai-as-promised": "~5.3.0",
"clang-format": "^1.0.34",
"expect.js": "~0.3.1",
"express": "~4.14.0",
"gulp": "^3.9.1",
"gulp-clang-format": "^1.0.23",
"jshint": "^2.9.2",
"lodash": "^4.5.1",
"marked": "^0.3.3",
"mocha": "2.5.3",
"rimraf": "~2.5.3",
"run-sequence": "^1.1.5",
"typescript": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/angular/protractor.git"
},
"bin": {
"protractor": "bin/protractor",
"webdriver-manager": "bin/webdriver-manager"
},
"main": "built/main.js",
"typings": "built/index.d.ts",
"scripts": {
"prepublish": "gulp prepublish",
"pretest": "gulp pretest",
"start": "node testapp/scripts/web-server.js",
"test": "node scripts/test.js",
"install_testapp": "cd testapp && npm install",
"tsc": "./node_modules/typescript/bin/tsc",
"tsc:w": "./node_modules/typescript/bin/tsc -w"
},
"license": "MIT",
"version": "4.0.5"
}