-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 911 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 911 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
{
"name": "@jarzzzi/rufetch",
"version": "1.0.2",
"description": "a fetch lib with middleware inspired by koa",
"entry": "src/index.ts",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"demo": "parcel serve ./demo/index.html",
"build": "rollup -c rollup.config.ts",
"version": "npm version patch",
"publish": "npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jarweb/rufetch.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Jarweb/rufetch/issues"
},
"homepage": "https://github.com/Jarweb/rufetch#readme",
"devDependencies": {
"@jarzzzi/nidavel": "^1.0.6",
"rollup": "^2.6.1",
"typescript": "^3.8.3"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1"
}
}