-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.1 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
{
"name": "@uphold/request-logger",
"version": "3.0.0",
"description": "A wrapper for the request module that logs all request events",
"keywords": [
"http",
"https",
"logger",
"request"
],
"homepage": "https://github.com/uphold/request-logger",
"bugs": {
"url": "https://github.com/uphold/request-logger/issues"
},
"license": "MIT",
"author": {
"name": "Pedro Branco",
"email": "[email protected]",
"url": "https://github.com/pedrobranco"
},
"main": "src",
"repository": "https://github.com/uphold/request-logger.git",
"scripts": {
"lint": "eslint src test",
"release": "release-it",
"test": "jest --coverage --verbose"
},
"dependencies": {},
"devDependencies": {
"@cypress/request": "^3.0.1",
"eslint": "^8.57.0",
"eslint-config-uphold": "^6.0.0",
"jest": "^29.7.0",
"nock": "^13.5.4",
"release-it": "^17.1.1"
},
"peerDependencies": {
"@cypress/request": ">=3.0.1"
},
"engines": {
"node": ">=4"
},
"jest": {
"coveragePathIgnorePatterns": [
"/src/proxy.js"
],
"restoreMocks": true
}
}