-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 975 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
{
"name": "cute-http",
"version": "2.2.6",
"description": "allow you cache response with memory or localStorage; allow you set timeout and retry count;allow you send multi request in one time",
"main": "index.js",
"types": "src/types.d.ts",
"scripts": {
"start": "node ./test/mock-server/run.js ",
"test": "./node_modules/ava/cli.js ./test/test-api.js ",
"pub": "npm publish --registry=https://registry.npmjs.org",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/concentjs/cute-http.git"
},
"keywords": [
"http",
"request",
"axios"
],
"author": "fantasticsoul",
"license": "MIT",
"bugs": {
"url": "https://github.com/concentjs/cute-http/issues"
},
"homepage": "https://github.com/concentjs/cute-http#readme",
"peerDependencies": {
"axios": "^0.21.1",
"axios-jsonp": "^1.0.2",
"query-string": "^6.12.0"
},
"devDependencies": {
"ava": "^1.4.1"
}
}