forked from itteco/iframely
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.98 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
64
65
66
67
68
69
70
{
"name": "iframely",
"version": "2.2.0",
"type": "module",
"description": "oEmbed/2 gateway endpoint. Get embed data for various http links through one self-hosted API",
"keywords": [
"oembed",
"embed",
"open graph",
"og",
"twitter cards"
],
"homepage": "http://iframely.com",
"repository": {
"type": "git",
"url": "https://github.com/itteco/iframely.git"
},
"bugs": {
"url": "https://github.com/itteco/iframely/issues"
},
"license": "MIT",
"dependencies": {
"@adobe/helix-fetch": "^3.1.0",
"async": "^3.2.4",
"cheerio": "^0.22.0",
"chokidar": "^3.5.2",
"dom-serializer": "^2.0.0",
"domutils": "^3.0.1",
"ejs": "^3.1.8",
"entities": "1.1.2",
"express": "^4.18.1",
"graceful-cluster": "^0.0.5",
"htmlparser2": "^7.1.2",
"iconv-lite": "^0.6.3",
"jslint": "^0.12.1",
"jsontoxml": "^1.0.1",
"memcached": "2.2.2",
"moment": "^2.29.3",
"node-cache": "^1.1.0",
"node-yaml-config": "^1.0.0",
"parse-iso-duration": "^1.1.0",
"probe-image-size": "^7.2.3",
"readabilitySAX": "1.6.1",
"redis": "^4.1.0",
"redis-clustr": "1.7.0",
"request": "^2.88.0",
"sax": "^1.2.2",
"semver": "^7.3.7",
"send": "^0.18.0",
"underscore": "^1.13.4"
},
"devDependencies": {
"chai": "^4.3.0",
"feedparser": "2.2.10",
"mocha": "^10.0.0",
"mock-http-server": "^1.4.5",
"mongoose": "^5.13.13",
"supertest": "^6.2.3"
},
"iframely-proxy-plugins": true,
"main": "./lib/core.js",
"scripts": {
"test": "npm run test-core-plugins && npm run test-e2e",
"test-core-plugins": "mocha --exit test/core-plugins.js",
"test-e2e": "NODE_ENV=test PORT=8080 mocha --exit test/e2e.js"
},
"engines": {
"node": ">=14.0"
}
}