forked from webdriverio-community/wdio-intercept-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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
{
"name": "wdio-intercept-service",
"version": "4.1.3",
"description": "Capture and assert HTTP ajax calls in webdriver.io 🕸",
"main": "index.js",
"scripts": {
"fix": "prettier --write '{**/*.js,**/*.ts}'",
"test": "wdio",
"pretest": "selenium-standalone install"
},
"types": "./types/wdio-intercept-service.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/chmanie/wdio-intercept-service.git"
},
"keywords": [
"selenium",
"webdriver",
"webdriverio",
"service",
"webdriverjs",
"fetch",
"ajax",
"http",
"test",
"testing"
],
"author": "Christian Maniewski <code@chmanie.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chmanie/wdio-intercept-service/issues"
},
"homepage": "https://github.com/chmanie/wdio-intercept-service#readme",
"devDependencies": {
"@wdio/cli": "6.1.5",
"@wdio/local-runner": "6.1.6",
"@wdio/mocha-framework": "6.1.6",
"@wdio/spec-reporter": "6.1.5",
"@wdio/sync": "6.1.5",
"husky": "4.2.5",
"mocha": "7.1.2",
"node-static": "0.7.11",
"prettier": "2.0.5",
"selenium-standalone": "6.17.0",
"webdriverio": "6.1.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn fix && git add \\*.js && git add \\*.ts"
}
}
}