-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 1.98 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "plunger",
"version": "4.0.0",
"description": "Powerful link analyzer",
"main": "index.js",
"repository": "https://github.com/jdesboeufs/plunger",
"author": "Jérôme Desboeufs <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest --detectOpenHandles"
},
"files": [
"lib/",
"index.js"
],
"dependencies": {
"bluebird": "^3.7.2",
"chalk": "^4.1.2",
"content-disposition": "^0.5.4",
"content-type": "^1.0.5",
"debug": "^4.3.4",
"execa": "^5.1.1",
"feedparser": "^2.2.9",
"file-type": "^10.2.0",
"got": "^9.3.0",
"hasha": "^5.2.2",
"htmlparser2": "^3.9.2",
"mime-types": "^2.1.35",
"mississippi": "^3.0.0",
"normalize-url": "^6.1.0",
"read-chunk": "^3.2.0",
"rfc2047": "^4.0.1",
"type-is": "^1.6.18"
},
"devDependencies": {
"finalhandler": "^1.2.0",
"jest": "^29.6.4",
"jest-junit": "^16.0.0",
"serve-static": "^1.15.0",
"test-listen": "^1.1.0",
"xo": "^0.56.0"
},
"engines": {
"node": ">=18.x"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/__helpers__/",
"/__fixtures__/"
],
"reporters": [
"default",
[
"jest-junit",
{
"output": "reports/tests/junit.xml"
}
]
],
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js",
"index.js"
],
"coverageReporters": [
"lcov",
"text-summary"
],
"forceExit": true
},
"xo": {
"semicolon": false,
"space": 2,
"rules": {
"unicorn/prefer-module": "off",
"import/extensions": "off",
"comma-dangle": [
"error",
"never"
],
"unicorn/prevent-abbreviations": "off",
"unicorn/prefer-number-properties": "warn",
"n/no-deprecated-api": "warn"
},
"overrides": [
{
"files": "__tests__/**/*.js",
"env": [
"jest"
]
}
]
}
}