forked from AnWeber/httpyac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.69 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "httpyac",
"displayName": "httpYac - Yet Another Client",
"license": "MIT",
"publisher": "AnWeber",
"description": "HTTP/REST CLI Client for *.http files",
"version": "6.5.1",
"homepage": "https://github.com/AnWeber/httpyac",
"repository": {
"type": "git",
"url": "https://github.com/AnWeber/httpyac"
},
"bugs": {
"url": "https://github.com/AnWeber/httpyac/issues"
},
"icon": "icon.png",
"keywords": [
"HTTP",
"REST",
"GraphQL",
"Intellij Http Client",
"Postman",
"Soap",
"gRPC",
"RabbitMQ",
"AMQP",
"WebSocket",
"EventSource",
"MQTT",
"ci",
"rest-client"
],
"engines": {
"node": ">=14.16"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"httpyac": "./bin/httpyac.js"
},
"scripts": {
"compile": "npm run esbuild && npm run tsc",
"docker_build": "npm run esbuild -- --no-external --no-minify",
"esbuild": "node ./buildSrc/esbuild.js",
"eslint": "eslint src --ext ts",
"format": "prettier --write --parser typescript \"src/**/*.ts?(x)\"",
"lint": "npm run format && npm run eslint && npm run tsc:check && npm run lockfile-lint && npm run packageJson-lint",
"lockfile-lint": "lockfile-lint --path package-lock.json --validate-https --allowed-hosts npm --validate-checksum --validate-integrity",
"packageJson-lint": "node ./buildSrc/lintPackageJson.js",
"prepack": "npm run compile",
"prepare": "husky install",
"start": "npm run watch",
"test": "jest",
"tsc-watch": "tsc --watch --project tsconfig.build.json",
"tsc:check": "tsc --noEmit --project tsconfig.json",
"tsc": "tsc --declaration --emitDeclarationOnly --project tsconfig.build.json",
"watch": "concurrently \"npm run esbuild -- --no-minify --watch\" \"npm run tsc -- --watch\" \"npm test -- --coverage --watch --coverageProvider=v8\""
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"eslint --cache --fix",
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/aws4": "^1.11.3",
"@types/encodeurl": "^1.0.0",
"@types/eventsource": "^1.1.11",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.195",
"@types/node": "^20.4.2",
"@types/tough-cookie": "^4.0.2",
"@types/uuid": "^9.0.2",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"concurrently": "^8.2.0",
"esbuild": "^0.18.12",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"lint-staged": "^13.2.3",
"lockfile-lint": "^4.10.6",
"mockttp": "^3.8.0",
"prettier": "^2.8.8",
"typescript": "^5.1.6"
},
"dependencies": {
"@cloudamqp/amqp-client": "^2.1.1",
"@grpc/grpc-js": "^1.8.18",
"@grpc/proto-loader": "^0.7.8",
"@xmldom/xmldom": "^0.8.9",
"aws4": "^1.12.0",
"chalk": "^4.1.2",
"clipboardy": "^3.0.0",
"commander": "^10.0.1",
"dayjs": "^1.11.9",
"dayjs-plugin-utc": "^0.1.2",
"dotenv": "^16.3.1",
"encodeurl": "^1.0.2",
"eventsource": "^2.0.2",
"filesize": "^10.0.7",
"globby": "^13.2.2",
"got": "^11.8.6",
"hookpoint": "^3.2.0",
"http-proxy-agent": "^7.0.0",
"https-proxy-agent": "^7.0.1",
"inquirer": "^9.2.8",
"kafkajs": "^2.2.4",
"lodash": "^4.17.21",
"mqtt": "^4.3.7",
"open": "^8.4.2",
"socks-proxy-agent": "^8.0.1",
"tough-cookie": "^4.1.3",
"uuid": "^9.0.0",
"ws": "^8.13.0",
"xmldom-format": "^1.1.1",
"xpath": "^0.0.33"
}
}