-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"name": "@hardcodet/httpclient",
"version": "2.0.4",
"description": "HTTP client library for easy consumption of RESTful APIs. Comes with built-in authentication strategies, validation and retry mechanism.",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"prepublish:npm": "yarn build",
"publish:npm": "yarn build && yarn publish --access public",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"keywords": [],
"author": "Philipp Sumi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hardcodet/httpclient-js.git"
},
"bugs": {
"url": "https://github.com/hardcodet/httpclient-js/issues"
},
"homepage": "https://github.com/hardcodet/httpclient-js#readme",
"devDependencies": {
"@types/node": "^20.8.3",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"tslint": "^6.1.3",
"typescript": "^5.2.2"
},
"dependencies": {
"axios": "^1.5.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0"
}
}