forked from jshemas/openGraphScraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.26 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
{
"name": "open-graph-scraper",
"description": "Node.js scraper module for Open Graph and Twitter Card info",
"version": "3.6.1",
"license": "MIT",
"main": "index.js",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"eslint": "eslint .",
"test": "nyc --reporter=html --reporter=text --exclude=tests/ mocha tests/*.js tests/**/*.js"
},
"engines": {
"node": ">=4.x.x"
},
"author": {
"name": "Josh Shemas",
"email": "[email protected]",
"url": "https://github.com/jshemas"
},
"dependencies": {
"chardet": "0.7.0",
"cheerio": "1.0.0-rc.2",
"iconv-lite": "0.4.24",
"lodash": "4.17.11",
"request": "2.88.0"
},
"devDependencies": {
"babel-eslint": "8.2.3",
"coveralls": "3.0.0",
"eslint": "4.19.1",
"eslint-config-airbnb-es5": "1.2.0",
"eslint-plugin-react": "7.7.0",
"expect.js": "0.3.1",
"mocha": "4.0.1",
"mockery": "2.1.0",
"nyc": "11.6.0",
"sinon": "4.5.0"
},
"repository": {
"type": "git",
"url": "http://github.com/jshemas/openGraphScraper.git",
"web": "http://github.com/jshemas/openGraphScraper"
},
"keywords": [
"og",
"ogp",
"open graph",
"opengraph",
"scraper",
"twitter card",
"twitter"
]
}