-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.33 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
93
94
95
{
"name": "har-to-json",
"version": "0.0.3",
"description": "Extract response from .har file and create JSON mocks for mock server. With support of query param",
"author": "Hari Shekhar",
"scripts": {
"prepack": "rm -rf lib && rm -rf lib_types && tsc -b",
"test": "jest --watchAll",
"test:ci": "jest",
"build": "tsc -b",
"version": "oclif-dev readme && git add README.md",
"har-to-mocks": "bin/run",
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{js,ts,tsx}\" --fix"
},
"bin": {
"har-to-mocks": "bin/run"
},
"bugs": {
"url": "https://github.com/shekhardtu/har-to-mocks/issues"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"cli-ux": "^5.6.7",
"fs-extra": "^10.1.0",
"tslib": "^2.4.0",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@oclif/config": "^1.17.0",
"@oclif/dev-cli": "^1.26.10",
"@oclif/plugin-help": "^5.1.12",
"@oclif/test": "^2.1.0",
"@semantic-release/git": "^10.0.1",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.42",
"@types/update-notifier": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"chai": "^4.3.4",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"install": "^0.13.0",
"jest": "^28.1.1",
"jest-diff": "^28.1.1",
"npm": "^8.12.1",
"prettier": "^2.7.0",
"semantic-release": "^19.0.3",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/shekhardtu/har-to-mocks",
"keywords": [
"cli",
"har",
"mocks",
"mock",
"testing",
"mocking",
"requests",
"connect-api-mocker"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "har-to-mocks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shekhardtu/har-to-mocks.git"
},
"types": "lib/index.d.ts",
"release": {
"branches": [
"master",
"next"
]
},
"directories": {
"test": "tests"
}
}