-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.3 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@momsfriendlydevco/axiosy",
"version": "1.1.1",
"description": "Axios with auto-retry, logging and sensible error reporting",
"main": "lib/axios.js",
"scripts": {
"lint": "eslint lib",
"test": "mocha"
},
"type": "module",
"imports": {
"#lib/*": "./lib/*.js"
},
"exports": {
".": "./lib/axios.js",
"./*": "./lib/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MomsFriendlyDevCo/axiosy.git"
},
"keywords": [
"axios",
"wrapper"
],
"author": "Matt Carter <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MomsFriendlyDevCo/axiosy/issues"
},
"homepage": "https://github.com/MomsFriendlyDevCo/axiosy#readme",
"engineStrict": true,
"engines": {
"node": ">=16.14.0"
},
"dependencies": {
"@momsfriendlydevco/debug": "^1.4.4",
"axios": "^0.27.2",
"retry-axios": "^3.0.0",
"temp": "^0.9.4"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.29.0",
"express": "^4.18.2",
"express-log-url": "^1.5.1",
"mocha": "^10.1.0"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"es6": true,
"node": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 13,
"sourceType": "module"
}
}
}