-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1020 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1020 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
39
40
41
42
43
44
45
46
47
{
"name": "http-with-fetch",
"version": "3.3.6",
"type": "module",
"exports": {
".": {
"default": "./lib/client.mjs",
"types": "./lib/client.d.mts"
},
"./harness": {
"default": "./lib/harness.mjs",
"types": "./lib/harness.d.mts"
}
},
"author": {
"name": "N. Md Faizaan",
"email": "aulisius7@gmail.com"
},
"bugs": "https://github.com/aulisius/http-with-fetch/issues",
"description": "A tiny abstraction over fetch",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aulisius/http-with-fetch.git"
},
"keywords": [
"fetch",
"http"
],
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc",
"dev": "tsc -w",
"test": "node --experimental-test-coverage --test test.mjs",
"prepare": "npm run build"
},
"devDependencies": {
"@types/node": "24.1.0",
"prettier": "3.6.2",
"rimraf": "6.0.1",
"typescript": "5.9.2"
},
"files": [
"lib/**",
"README.md"
]
}