-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
63 lines (63 loc) · 1.74 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
57
58
59
60
61
62
63
{
"name": "unfurl.js",
"engines": {
"node": ">=6.0.0"
},
"version": "5.1.0",
"description": "Scraper for oEmbed, Twitter Cards and Open Graph metadata - fast and Promise-based",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"debug": "^3.2.7",
"he": "^1.2.0",
"htmlparser2": "^8.0.1",
"iconv-lite": "^0.4.24",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/htmlparser2": "^3.10.3",
"@types/jest": "^23.3.2",
"@types/node": "^16.7.13",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"coveralls": "^3.0.2",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^23.6.0",
"nock": "^13.1.3",
"prettier": "^2.7.1",
"semantic-release": "^20.1.0",
"ts-jest": "^23.1.4",
"typescript": "^4.8.4"
},
"scripts": {
"lint": "eslint . --ext .ts",
"test": "npm run lint && port=9000 jest --verbose --runInBand --coverage --coveragePathIgnorePatterns '/test/'",
"travis": "port=9000 jest --verbose --runInBand --coverage --coverageReporters=text-lcov --coveragePathIgnorePatterns '/test/' | coveralls",
"start": "node dist/index.js",
"watch": "tsc -w --outDir dist",
"build": "tsc --outDir dist",
"prepare": "npm run build"
},
"keywords": [
"oembed",
"twitter-cards",
"open-graph-protocol",
"open-graph",
"ogp",
"scraper",
"scraping",
"embedding",
"embed",
"iframe",
"metadata",
"node.js",
"fast"
],
"repository": "git://github.com/jacktuck/unfurl.git",
"author": "Jack Tuck",
"license": "ISC"
}