-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 957 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
40
41
42
43
44
{
"name": "@fantastic-utils/fetch",
"version": "0.2.3",
"description": "fantastic modern fetch library which have rich features",
"main": "dist/umd/index.js",
"module": "dist/esm/index.mjs",
"sideEffects": "flag",
"scripts": {
"dev": "father dev",
"test": "jest",
"build": "father build && mv ./dist/esm/index.js ./dist/esm/index.mjs",
"prepublishOnly": "father doctor && npm run build"
},
"keywords": [
"fetch",
"ajax",
"axios",
"cancel",
"request"
],
"authors": [
"zsney.lzhou@gmail.com"
],
"license": "MIT",
"files": [
"dist",
"compiled"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"father": "^4.1.3",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.4.2",
"nock": "^13.3.0",
"ts-jest": "^29.0.3"
},
"dependencies": {
"@babel/runtime": "^7.22.15"
}
}