forked from marekdev-me/TailorFetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 979 Bytes
/
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
{
"name": "tailorfetch",
"version": "1.6.0",
"description": "TailorFetch is a lightweight Node.js library for making HTTP requests with customizable options and response transformations.",
"main": "lib/index.js",
"scripts": {
"build": "npm run test && npm run clean && npm run build:esm",
"test": "mocha",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outdir lib/cjs",
"prepare": "npm run build",
"updateLink": "npm run clean && tsc && npm rm lib -g && npm link",
"clean": "rimraf ./lib"
},
"files": [
"lib"
],
"keywords": [
"HTTP-Client",
"Web",
"http",
"api"
],
"author": "Marek Dev",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.9",
"chai": "^4.4.0",
"mocha": "^10.2.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"redis": "^4.6.12"
}
}