-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 770 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 770 Bytes
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
{
"name": "api-client-wrapper",
"version": "0.2.3",
"description": "Easy to use out of the box API wrapper tha uses axios at its core",
"author": "Roberto Langarica <roberto.langarica@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prepublish": "tsc",
"scripts": {
"test": "echo \"No test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/RobertoLangarica/api-client-wrapper.git"
},
"bugs": "",
"homepage": "",
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.6.0",
"yarn": ">= 1.6.0"
},
"dependencies": {
"axios": "^0.21.1",
"uuid": "^8.2.0"
},
"devDependencies": {
"@types/node": "^14.0.27",
"@types/uuid": "^8.0.0"
}
}