-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
44 lines (44 loc) · 930 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": "zl-fetch",
"version": "6.0.6",
"description": "A library that makes the Fetch API easy to use",
"type": "module",
"sideEffects": false,
"files": [
"src"
],
"exports": "./src/index.js",
"keywords": [
"fetch",
"javascript",
"browser",
"nodejs",
"ajax"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zellwk/zl-fetch.git"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"release": "np --no-publish && npm publish"
},
"author": "Zell Liew <[email protected]>",
"license": "MIT",
"devDependencies": {
"@vitest/ui": "^0.23.4",
"body-parser": "^1.20.0",
"express": "^4.18.1",
"form-data": "^4.0.0",
"jsdom": "^20.0.0",
"np": "^7.6.2",
"portastic": "^1.0.1",
"vite": "^3.1.3",
"vitest": "^0.23.4"
},
"dependencies": {
"statuses": "^2.0.1"
}
}