-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
76 lines (76 loc) · 1.59 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "httpie",
"version": "2.0.0-next.13",
"repository": "lukeed/httpie",
"description": "A lightweight, Promise-based HTTP client for Node.js and the browser~!",
"browser": "xhr/index.mjs",
"unpkg": "xhr/index.min.js",
"worker": "fetch/index.mjs",
"module": "node/index.mjs",
"main": "node/index.js",
"types": "index.d.ts",
"license": "MIT",
"exports": {
".": {
"worker": "./fetch/index.mjs",
"browser": "./xhr/index.mjs",
"import": "./node/index.mjs",
"require": "./node/index.js"
},
"./node": {
"import": "./node/index.mjs",
"require": "./node/index.js"
},
"./fetch": {
"import": "./fetch/index.mjs",
"require": "./fetch/index.js"
},
"./browser": {
"import": "./xhr/index.mjs",
"require": "./xhr/index.js"
},
"./xhr": {
"import": "./xhr/index.mjs",
"require": "./xhr/index.js"
},
"./package.json": "./package.json"
},
"author": {
"name": "Luke Edwards",
"email": "[email protected]",
"url": "https://lukeed.com"
},
"engines": {
"node": ">=10"
},
"scripts": {
"pretest": "npm run build",
"build": "bundt --main --module --unpkg",
"test": "uvu -r esm test"
},
"modes": {
"fetch": "src/fetch.js",
"node": "src/node.js",
"xhr": "src/xhr.js"
},
"files": [
"*.d.ts",
"fetch",
"node",
"xhr"
],
"keywords": [
"http",
"fetch",
"client",
"request",
"universal",
"promise",
"xhr"
],
"devDependencies": {
"bundt": "1.1.2",
"esm": "3.2.25",
"uvu": "0.5.1"
}
}