This repository was archived by the owner on Apr 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.54 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
{
"name": "@hqoss/http-client",
"version": "0.0.1",
"description": "A light-weight, performant, composable blueprint for writing consistent and re-usable Node.js HTTP clients",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"engines": {
"node": ">=12",
"npm": ">=6"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"format": "prettier --write \"./{src,test}/**/*.ts\"",
"format:check": "prettier --check \"./{src,test}/**/*.ts\"",
"test": "jest",
"generate-docs": "rm -rf ./docs && typedoc --mode file --excludePrivate --excludeNotExported --plugin typedoc-plugin-markdown --out ./docs && rm ./docs/README.md",
"preversion": "npm run format:check && npm run build && npm test",
"prepublishOnly": "npm run format:check && npm run build && npm test",
"postversion": "git push --follow-tags"
},
"keywords": [
"http",
"https",
"fetch",
"node-fetch",
"javascript",
"js",
"typescript",
"node",
"node.js"
],
"author": "Slavo Vojacek",
"license": "MIT",
"dependencies": {
"node-fetch": "^2.6.0",
"tslib": "^2.0.0",
"url-join": "^4.0.1"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node-fetch": "^2.5.7",
"@types/url-join": "^4.0.0",
"jest": "^26.0.1",
"nock": "^12.0.3",
"prettier": "2.0.5",
"ts-jest": "^26.1.0",
"typedoc": "^0.17.7",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^3.9.3"
},
"repository": {
"type": "git",
"url": "git@github.com:hqoss/node-http-client.git"
}
}