-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.36 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
{
"name": "httpdumper",
"version": "1.0.1",
"description": "httpdumper is a library that will help you debugging your http request.",
"main": "httpdumper.js",
"bin": {
"httpdumper": "bin/httpdumper.js"
},
"scripts": {
"start": "node ./bin/httpdumper.js",
"test": "jest",
"test:coverage": "npm test -- --coverage",
"test:badges": "npm run test:coverage && jest-coverage-badges"
},
"homepage": "https://github.com/Merlier/httpdumper#readme",
"repository": {
"type": "git",
"url": "https://github.com/Merlier/httpdumper"
},
"keywords": [
"request",
"http",
"dump",
"log"
],
"author": "merlier",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"fast-proxy": "^1.7.0",
"formidable": "^1.2.2",
"http": "0.0.1-security",
"minimist": "^1.2.5"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"jest-coverage-badges": "^1.1.2",
"mock-req": "^0.2.0",
"prettier": "^2.1.2"
},
"jest": {
"collectCoverageFrom": [
"httpdumper.js"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"coverageReporters": [
"json-summary",
"text",
"lcov"
]
}
}