-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.79 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.79 KB
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
{
"name": "link-meta-extractor",
"version": "1.3.7",
"description": "Link Meta Extractor. Extract metadata information from any http/https url. Simply pass a url string to the function and wait for the metadata results.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"__tests__"
],
"scripts": {
"test": "jest --coverage",
"build": "rm -rf dist && rollup --config",
"lint": "eslint .",
"dev": "rollup --config && node dist/index.js",
"prepublish": "jest && eslint . && rollup --config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stackblogger/link-meta-extractor.git"
},
"keywords": [
"metadata-extractor",
"meta-scraper",
"meta-extractor",
"scraper",
"link-scraper",
"url-scraper",
"url-meta-scraper",
"url-meta-extractor",
"extractor",
"node.js",
"javascript"
],
"author": {
"name": "StackBlogger (Jameer Khan)",
"email": "jimcute8879@gmail.com",
"url": "https://stackblogger.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/stackblogger/link-meta-extractor/issues"
},
"homepage": "https://stackblogger.com",
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.7"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"node-fetch": "^2.6.7"
}
}