-
-
Notifications
You must be signed in to change notification settings - Fork 124
/
package.json
51 lines (51 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
{
"name": "link-preview-js",
"version": "3.0.6",
"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": "[email protected]",
"license": "MIT",
"repository": "https://github.com/ospfranco/link-preview-js",
"dependencies": {
"abort-controller": "^3.0.0",
"cheerio": "1.0.0-rc.11",
"cross-fetch": "3.1.5",
"url": "0.11.0"
},
"files": [
"build"
],
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@types/cheerio": "0.22.24",
"@types/jest": "^28.1.4",
"jest": "^28.1.2",
"prettier": "2.7.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}