forked from OP-Engineering/link-preview-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "link-preview-js",
"version": "3.0.5",
"description": "Javascript module to extract and fetch HTTP link information from blocks of text.",
"main": "build/index.js",
"exports": {
".": {
"require": "./build/index.js",
"import": "./build/index.js"
},
"./package.json": "./package.json"
},
"types": "build/index.d.ts",
"scripts": {
"test": "jest",
"test:ci": "jest --testLocationInResults --ci --outputFile=test_results.json --json",
"build": "tsc",
"bump": "./bump-version.sh",
"prepublishOnly": "tsc"
},
"keywords": [
"javascript",
"link",
"url",
"http",
"preview"
],
"author": "Oscar Franco",
"email": "ospfranco@protonmail.com",
"license": "MIT",
"repository": "https://github.com/ospfranco/link-preview-js",
"dependencies": {
"cheerio": "^1.0.0",
"url": "0.11.0"
},
"files": [
"build"
],
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@types/jest": "^28.1.4",
"jest": "^28.1.2",
"prettier": "2.7.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
}
}