This repository has been archived by the owner on Dec 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
73 lines (73 loc) · 2 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": "blocking-proxy",
"description": "WebDriver Proxy for testing rich clients. It block certain calls until Angular is done updating the page under test.",
"homepage": "https://github.com/angular/blocking-proxy",
"keywords": [
"test",
"testing",
"webdriver",
"webdriverjs",
"selenium"
],
"contributors": [
"Michael Giambalvo <heathkit@google.com>",
"Julie Ralph <ju.ralph@gmail.com>"
],
"dependencies": {
"minimist": "^1.2.0"
},
"devDependencies": {
"@types/jasmine": "2.5.45",
"@types/minimist": "^1.1.29",
"@types/nock": "^8.2.0",
"@types/node": "^6.0.45",
"@types/rimraf": "0.0.28",
"@types/selenium-webdriver": "^2.53.39",
"body-parser": "1.14.2",
"clang-format": "^1.0.34",
"gulp": "^3.9.1",
"gulp-clang-format": "^1.0.23",
"gulp-tslint": "^7.0.1",
"jasmine": "^2.3.2",
"jasmine-co": "^1.2.2",
"jasmine-ts": "^0.2.1",
"jshint": "2.9.1",
"nock": "^9.0.2",
"rimraf": "^2.5.4",
"run-sequence": "^1.2.2",
"selenium-mock": "^0.1.5",
"selenium-webdriver": "^3.6.0",
"ts-node": "^2.1.2",
"tslint": "^4.3.1",
"tslint-eslint-rules": "^3.1.0",
"typescript": "^2.1.5",
"vrsource-tslint-rules": "^0.14.1",
"webdriver-manager": "^12.0.6"
},
"repository": {
"type": "git",
"url": "git://github.com/angular/jasminewd.git"
},
"typings": "built/lib/index.d.ts",
"main": "built/lib/index.js",
"bin": {
"blocking-proxy": "built/lib/bin.js"
},
"scripts": {
"prepublish": "gulp prepublish",
"start": "node built/lib/bin.js",
"webdriver": "webdriver-manager update && webdriver-manager start",
"test": "JASMINE_CONFIG_PATH=spec/jasmine_unit.json jasmine-ts",
"test:auto": "find lib spec | entr npm test",
"testapp": "cd testapp && npm start",
"test:e2e": "JASMINE_CONFIG_PATH=spec/jasmine_e2e.json jasmine-ts"
},
"jshintConfig": {
"esversion": 6
},
"engines": {
"node": ">=6.9.x"
},
"license": "MIT",
"version": "1.0.1"
}