-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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
{
"name": "metafetch",
"description": "Metafetch fetches a given URL's title, description, images, links etc.",
"version": "3.2.0",
"homepage": "https://github.com/brahma-dev/metafetch",
"repository": {
"type": "git",
"url": "https://github.com/brahma-dev/metafetch"
},
"files": [
"dist",
"sample.js"
],
"author": "brahma-dev",
"keywords": [
"meta",
"graph",
"tags",
"description",
"images"
],
"main": "dist/index",
"dependencies": {
"axios": "^1.6.8",
"cheerio": "^1.0.0-rc.12",
"franc": "^6.2.0",
"iconv-lite": "^0.6.3",
"langs": "^2.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/franc": "^5.0.3",
"@types/langs": "^2.0.5",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.3",
"coveralls": "^3.1.1",
"mocha": "^10.4.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"should": "^13.2.3",
"typescript": "^5.4.3"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"test": "mocha --timeout 4000 test && nyc --reporter=lcov ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec --timeout 4000"
},
"runkitExampleFilename": "sample.js",
"engines": {
"node": ">= 16.0.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/brahma-dev/metafetch/issues"
}
}