-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 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
46
47
48
49
50
51
{
"name": "@cluelesscoders/request-pool",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "0.2.5",
"description": "Create request pool queue for all types of http request",
"repository": {
"type": "git",
"url": "https://github.com/cluelesscoders/request-pool"
},
"keywords": [
"axios",
"request",
"pool",
"request-pool",
"request-queue"
],
"contributors": [
{
"name": "Engit Prabhat",
"email": "engitj@gmail.com"
}
],
"license": "MIT",
"scripts": {
"lint": "tslint -p tsconfig.json",
"build": "npm run lint && npm run build-ts",
"test": "jest -c jest.config.js --coverage --verbose",
"build-ts": "tsc",
"watch": "tsc -w",
"prepack": "npm run lint & npm run test && npm run build-ts"
},
"dependencies": {
"axios": "^0.19.0"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.11.5",
"@types/supertest": "^2.0.7",
"@types/winston": "^2.4.4",
"jest": "^24.5.0",
"prettier": "^1.17.1",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.3.4000"
}
}