-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
92 lines (92 loc) · 2.83 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
87
88
89
90
91
92
{
"name": "wdio-ng-apimock-service",
"description": "Webdriverio plugin for ng-apimock",
"version": "3.0.1",
"homepage": "https://github.com/ng-apimock/webdriverio-plugin#readme",
"author": {
"name": "Mischa Dasberg",
"email": "[email protected]"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"precompile": "rimraf dist",
"compile": "tsc",
"lint": "eslint \"src/**/*.ts\" \"itest/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"lint-staged": "lint-staged",
"test": "jest --config=jest.config.js -w 1",
"preitest7": "cd itest/wdio-v7 && yarn install",
"preitest8": "cd itest/wdio-v8 && yarn install",
"itest7": "yarn --cwd itest/wdio-v7 wdio-ci",
"itest8": "yarn --cwd itest/wdio-v8 wdio-ci",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ng-apimock/webdriverio-plugin.git"
},
"bugs": {
"url": "https://github.com/ng-apimock/webdriverio-plugin/issues"
},
"license": "MIT",
"keywords": [
"apimock",
"ng-apimock",
"http",
"api",
"webdriverio",
"plugin",
"wdio-plugin",
"wdio-service"
],
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.7",
"@semantic-release/npm": "9.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/jest": "29.2.5",
"@types/uuid": "9.0.0",
"@types/webdriverio": "5.0.0",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"commitizen": "4.2.6",
"connect": "3.7.0",
"eslint": "8.32.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.4",
"eslint-plugin-jest": "27.2.1",
"fs-extra": "11.1.0",
"http-proxy-middleware": "^2.0.6",
"husky": "8.0.3",
"jest": "29.3.1",
"jest-createspyobj": "2.0.0",
"jest-matchers": "20.0.3",
"lint-staged": "13.1.0",
"rimraf": "4.0.6",
"semantic-release": "20.0.2",
"serve-static": "1.15.0",
"ts-jest": "29.0.5",
"typescript": "4.9.4"
},
"dependencies": {
"@ng-apimock/base-client": "3.3.1"
},
"peerDependencies": {
"webdriverio": ">=5.*"
},
"lint-staged": {
"**/**.{ts}": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}