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
|
{
"name": "open-graph-scraper",
"description": "Node.js scraper module for Open Graph and Twitter Card info",
"version": "5.2.3",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"eslint:fix": "eslint . --ext .js,.ts --fix",
"eslint": "eslint . --ext .js,.ts",
"mocha:int": "ts-mocha --require ./tests/helpers/bootstrap.js --recursive \"./tests/integration/**/*.spec.js\" --timeout 10000",
"mocha:unit": "nyc --reporter=html --reporter=text --exclude=tests/ ts-mocha --require ./tests/helpers/bootstrap.js --recursive \"./tests/unit/**/*.spec.js\"",
"prepare": "npm run snyk-protect && npm run build",
"snyk-protect": "snyk-protect",
"test": "npm run mocha:unit && npm run mocha:int"
},
"engines": {
"node": ">=14.16"
},
"author": {
"name": "Josh Shemas",
"email": "jjs90jjs@gmail.com",
"url": "https://github.com/jshemas"
},
"dependencies": {
"chardet": "^1.5.1",
"cheerio": "^1.0.0-rc.12",
"got": "^12.6.0",
"iconv-lite": "^0.6.3",
"validator": "^13.9.0"
},
"files": [
"/dist",
"CHANGELOG.md",
"index.ts"
],
"devDependencies": {
"@snyk/protect": "^1.1118.0",
"@types/node": "^18.15.2",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"chai": "^4.3.7",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"nock": "^13.3.0",
"nyc": "^15.1.0",
"sinon": "^15.0.2",
"ts-mocha": "^10.0.0",
"tunnel": "^0.0.6",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "http://github.com/jshemas/openGraphScraper.git",
"web": "http://github.com/jshemas/openGraphScraper"
},
"keywords": [
"app links",
"dublin core",
"meta tags",
"metadata",
"og",
"ogp",
"ogs",
"open graph scraper",
"open graph",
"opengraph",
"openGraphScraper",
"scraper",
"twitter card",
"twitter"
],
"snyk": true
}
|