forked from blakeembrey/node-htmlmetaparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.65 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
{
"name": "htmlmetaparser",
"version": "2.1.2",
"publishConfig": {
"access": "public"
},
"description": "A `htmlparser2` handler for parsing rich metadata from HTML. Includes HTML metadata, JSON-LD, RDFa, microdata, OEmbed, Twitter cards and AppLinks.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/node-htmlmetaparser.git"
},
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"homepage": "https://github.com/blakeembrey/node-htmlmetaparser",
"bugs": {
"url": "https://github.com/blakeembrey/node-htmlmetaparser/issues"
},
"main": "dist/index.js",
"scripts": {
"fixtures": "ts-node 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": "ts-node scripts/oembed-providers.ts"
},
"files": [
"dist/",
"vendor/"
],
"keywords": [
"metadata",
"scraper",
"rich",
"html",
"info",
"rdfa",
"open graph",
"oembed",
"microdata",
"json-ld"
],
"dependencies": {
"setvalue": "^1.0.0"
},
"devDependencies": {
"@borderless/ts-scripts": "^0.5.0",
"@types/jest": "^26.0.20",
"@types/node": "^16.4.3",
"filenamify": "^5.0.0",
"htmlparser2": "^6.0.0",
"popsicle": "^12.0.5",
"ts-node": "^10.1.0",
"typescript": "^4.1.3"
},
"typings": "dist/index.d.ts",
"ts-scripts": {
"src": [
"src",
"scripts"
],
"project": [
"tsconfig.build.json"
]
}
}