This repository was archived by the owner on Jul 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 KB
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
{
"name": "protractor-cookbook",
"version": "1.0.0",
"description": "Examples for using Protractor in various common scenarios.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/angular/protractor-cookbook.git"
},
"scripts": {
"external-exports": "export BASE_URL='http://angular.github.io'",
"jasmine": "jasmine JASMINE_CONFIG_PATH=tests/spec/support/jasmine.json",
"lint": "gulp lint",
"pretest": "npm run tsc",
"start": "cd testapp && npm install && npm start",
"test": "npm run jasmine",
"tsc": "tsc",
"webdriver-update": "webdriver-manager update",
"webdriver-start": "webdriver-manager start"
},
"keywords": [
"angular",
"test",
"testing",
"webdriver",
"webdriverjs",
"selenium",
"protractor"
],
"author": "Craig Nishina <craig.nishina@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/angular/protractor-cookbook/issues"
},
"homepage": "https://github.com/angular/protractor-cookbook#readme",
"devDependencies": {
"@types/jasmine": "^2.5.41",
"@types/node": "^6.0.62",
"gulp": "^3.9.1",
"gulp-clang-format": "^1.0.23",
"gulp-tslint": "^7.0.1",
"jasmine": "^2.5.3",
"jshint": "^2.9.4",
"protractor": "^5.1.0",
"run-sequence": "^1.2.2",
"tslint": "^4.4.2",
"tslint-eslint-rules": "^3.2.3",
"typescript": "^2.1.5",
"vrsource-tslint-rules": "^4.0.1"
}
}