-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 833 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 833 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
33
34
35
36
37
38
{
"name": "fetch-to-go",
"version": "1.2.0",
"description": "A simple library for making HTTP requests in go-like style",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "npm run build"
},
"keywords": [
"fetch",
"http",
"request"
],
"author": "Jhonatan Morais",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/getJv/fetch-to-go"
},
"bugs": {
"url": "https://github.com/getJv/fetch-to-go/issues"
},
"homepage": "https://github.com/getJv/fetch-to-go#readme",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"jest": "^29.7.0",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}