-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
73 lines (73 loc) · 1.7 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
{
"name": "htmlmetaparser",
"version": "2.1.3",
"description": "A `htmlparser2` handler for parsing rich metadata from HTML. Includes HTML metadata, JSON-LD, RDFa, microdata, OEmbed, Twitter cards and AppLinks.",
"keywords": [
"metadata",
"scraper",
"rich",
"html",
"info",
"rdfa",
"open graph",
"oembed",
"microdata",
"json-ld"
],
"homepage": "https://github.com/blakeembrey/node-htmlmetaparser",
"bugs": {
"url": "https://github.com/blakeembrey/node-htmlmetaparser/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/node-htmlmetaparser.git"
},
"license": "Apache-2.0",
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/",
"vendor/"
],
"scripts": {
"fixtures": "tsx scripts/fixtures.ts",
"format": "ts-scripts format",
"lint": "ts-scripts lint",
"prepare": "ts-scripts install && ts-scripts build",
"specs": "ts-scripts specs",
"test": "ts-scripts test",
"vendor": "tsx scripts/oembed-providers.ts"
},
"dependencies": {
"setvalue": "^1.0.0"
},
"devDependencies": {
"@borderless/ts-scripts": "^0.15.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@vitest/coverage-v8": "^1.0.1",
"filenamify": "^6.0.0",
"htmlparser2": "^9.0.0",
"popsicle": "^12.0.5",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"vitest": "^1.0.1"
},
"publishConfig": {
"access": "public"
},
"ts-scripts": {
"src": [
"src",
"scripts"
],
"project": [
"tsconfig.build.json"
]
}
}