-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 KB
/
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
{
"name": "@enkidevs/axios-sisyphus",
"version": "0.0.3",
"description": "library for retryable and configurable HTTP requests",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"test": "jest",
"tsc": "tsc",
"prepublishOnly": "npm run lint && npm run test && npm run tsc"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"axios",
"http",
"retry",
"request"
],
"author": "Cătălin Buruiană <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.0.0",
"typescript": "^3.8.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}