-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.11 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.11 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@testplane/mocks",
"version": "1.0.1",
"description": "Testplane plugin that allows you to mock HTTP requests. Works only with browsers that support the CDP protocol",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "tsc",
"build-spec": "tsc --build tsconfig.spec.json",
"build-dev": "tsc --allowUnreachableCode --allowUnusedLabels --noUnusedLocals --noUnusedParameters",
"clean": "rimraf build/ build-spec/ *.tsbuildinfo",
"prepack": "npm run clean && npm run build",
"test": "npm run lint && npm run unit",
"lint": "npm run eslint && npm run style",
"reformat": "eslint src --ext .ts --fix && prettier --write 'src/**/*.ts' '**/*.json'",
"style": "prettier --check 'src/**/*.ts' '**/*.json'",
"eslint": "eslint src --ext .ts",
"unit": "jest",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gemini-testing/testplane-mocks.git"
},
"engines": {
"node": ">= 18.17.0"
},
"keywords": [
"testplane",
"testplane-plugin",
"hermione",
"dumps"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gemini-testing/testplane-mocks/issues"
},
"homepage": "https://github.com/gemini-testing/testplane-mocks#readme",
"devDependencies": {
"@types/btoa": "^1.2.3",
"@types/http-codes": "^1.0.2",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/node": "^12.20.19",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-gemini-testing": "^3.0.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"puppeteer-core": "^13.7.0",
"rimraf": "^3.0.2",
"testplane": "^8.20.4",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.1",
"typescript": "^4.4.4",
"standard-version": "^4.0.0"
},
"dependencies": {
"btoa": "^1.2.1",
"gemini-configparser": "^1.1.0",
"http-codes": "^1.0.0",
"lodash": "^4.17.21",
"p-queue": "^6.6.2"
},
"peerDependencies": {
"testplane": "*"
}
}