-
Notifications
You must be signed in to change notification settings - Fork 302
/
package.json
71 lines (71 loc) · 2.1 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
71
{
"name": "iframely",
"version": "2.4.3",
"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/fetch": "^4.0.6",
"async": "^3.2.4",
"cheerio": "^0.22.0",
"chokidar": "^3.5.3",
"cookie": "^0.5.0",
"dom-serializer": "^2.0.0",
"domutils": "^3.0.1",
"ejs": "3.1.10",
"entities": "1.1.2",
"express": "^4.19.0",
"got": "^14.4.4",
"graceful-cluster": "^0.0.5",
"htmlparser2": "^7.2.0",
"iconv-lite": "^0.6.3",
"jslint": "^0.12.1",
"jsontoxml": "^1.0.1",
"memcached": "2.2.2",
"moment": "^2.30.1",
"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.6.14",
"redis-clustr": "1.7.0",
"sax": "^1.2.4",
"send": "^0.18.0",
"underscore": "^1.13.6"
},
"devDependencies": {
"chai": "^4.3.7",
"feedparser": "2.2.10",
"mocha": "^10.2.0",
"mock-http-server": "^1.4.5",
"mongoose": "^8.4.0",
"supertest": "^6.3.3"
},
"iframely-proxy-plugins": true,
"main": "./lib/core.js",
"scripts": {
"test": "npm run test-core-plugins && npm run test-e2e && npm run custom_plugins",
"test-core-plugins": "mocha --exit test/core-plugins.js",
"test-e2e": "NODE_ENV=test PORT=8080 mocha --exit test/e2e.js",
"custom_plugins": "NODE_ENV=test_with_custom_plugins PORT=8080 mocha --exit test/custom_plugins.js"
},
"engines": {
"node": ">=18.0"
}
}