-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
83 lines (83 loc) · 1.67 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
{
"name": "url-inspector",
"version": "8.7.0",
"description": "Get metadata about any url",
"type": "module",
"main": "src/inspector.js",
"exports": {
".": "./src/inspector.js",
"./package.json": "./package.json"
},
"engines": {
"node": ">=20"
},
"scripts": {
"test": "mocha"
},
"mocha": {
"exit": true
},
"bin": {
"url-inspector": "bin/url-inspector.js"
},
"files": [
"bin/*",
"src/*"
],
"repository": {
"type": "git",
"url": "https://github.com/kapouer/url-inspector.git"
},
"keywords": [
"metadata",
"inspect",
"url",
"schema.org",
"opengraph"
],
"author": "Jérémy Lal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kapouer/url-inspector/issues"
},
"dependencies": {
"bl": "^6.0.15",
"class-deferred": "^1.0.1",
"content-disposition": "^0.5.4",
"content-type": "^1.0.5",
"dashdash": "^2.0.0",
"debug": ">=4.3.7",
"dom-serializer": "^2.0.0",
"domhandler": "^5.0.3",
"got": "^14.4.5",
"htmlparser2": "^9.1.0",
"http-errors": "^2.0.0",
"iconv-lite": "^0.6.3",
"luxon": "^3.5.0",
"media-typer": "^1.1.0",
"mime": "^4.0.4",
"oembed-providers": "^1.0.20240830",
"p-event": "^6.0.1",
"streat": "^1.0.0",
"strong-data-uri": "^1.0.6"
},
"devDependencies": {
"@kapouer/eslint-config": "^2.0.0",
"expect.js": "^0.3.1",
"express": "^4.21.0",
"mocha": "^10.7.3"
},
"eslintConfig": {
"extends": "@kapouer/eslint-config",
"overrides": [
{
"files": [
"test/*.js"
],
"env": {
"mocha": true
}
}
]
}
}