forked from jshemas/openGraphScraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.01 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
{
"name": "open-graph-scraper",
"description": "Node.js scraper module for Open Graph and Twitter Card info",
"version": "4.5.1",
"license": "MIT",
"main": "index.js",
"scripts": {
"eslint:fix": "eslint . --ext .js --fix",
"eslint": "eslint . --ext .js",
"mocha:unit": "nyc --reporter=html --reporter=text --exclude=tests/ mocha --require ./tests/helpers/bootstrap.js --recursive \"./tests/unit/**/*.spec.js\"",
"mocha:int": "mocha --require ./tests/helpers/bootstrap.js --recursive \"./tests/integration/**/*.spec.js\" --timeout 10000",
"test": "npm run mocha:unit && npm run mocha:int",
"markdown:lint": "markdownlint **/*.md --ignore node_modules",
"markdown:lint:fix": "markdownlint **/*.md --ignore node_modules",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"engines": {
"node": ">=10.x.x"
},
"author": {
"name": "Josh Shemas",
"email": "jjs90jjs@gmail.com",
"url": "https://github.com/jshemas"
},
"dependencies": {
"chardet": "^1.2.1",
"cheerio": "^1.0.0-rc.3",
"got": "^11.5.1",
"iconv-lite": "^0.6.2",
"validator": "^13.0.0"
},
"files": [
"CHANGELOG.md",
"/lib"
],
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"markdownlint-cli": "^0.23.2",
"mocha": "^8.1.0",
"nyc": "^15.0.1",
"sinon": "^9.0.2",
"snyk": "^1.369.2"
},
"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",
"open graph",
"opengraph",
"scraper",
"twitter card",
"twitter"
],
"snyk": true
}