-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "@glomex/custom-fetch",
"version": "1.1.2",
"description": "A convenience wrapper for fetch, which can be used in node and in the browser.",
"type": "module",
"source": "index.js",
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/custom-fetch.umd.js",
"exports": {
".": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"./browser": {
"require": "./dist/custom-fetch.cjs",
"default": "./dist/custom-fetch.modern.js"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "npm run -s build",
"build": "microbundle *.js",
"dev": "microbundle watch *.js",
"test": "mocha test/custom-fetch.test.js"
},
"author": "glomex GmbH",
"license": "Apache-2.0",
"repository": "github:glomex/custom-fetch",
"bugs": {
"url": "https://github.com/glomex/custom-fetch/issues"
},
"dependencies": {
"abort-controller": "^3.0.0",
"node-fetch": "^2.6.6"
},
"devDependencies": {
"@ungap/global-this": "^0.4.4",
"microbundle": "^0.14.2",
"mocha": "^9.1.3",
"sinon": "^12.0.1"
}
}