-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 KB
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": "axios-batch",
"version": "0.0.6",
"description": "Axios batch calls, with return object for tracking",
"repository": {
"type": "git",
"url": "https://github.com/DutchRican/axios-batch.git"
},
"main": "./bin/index.js",
"preferGlobal": false,
"scripts": {
"start-dev": "ts-node ./lib/index.ts",
"build": "tsc",
"start": "node ./bin",
"test": "jest",
"test:ci": "jest --coverage && cat coverage/lcov.info | coveralls"
},
"keywords": [
"axios",
"parallel",
"retry",
"batch",
"requests"
],
"author": "Paul van Woensel",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"axios-retry": "^3.1.9",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@types/uuid": "^8.3.0",
"axios-mock": "^1.0.1",
"axios-mock-adapter": "^1.19.0",
"coveralls": "^3.1.0",
"jest": "^28.1.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.1.3"
},
"types": "./bin/index.d.ts"
}