-
Notifications
You must be signed in to change notification settings - Fork 329
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.74 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.74 KB
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
72
73
74
75
76
77
78
79
80
81
{
"name": "iframely",
"version": "2.0.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/fetch": "^4.1.1",
"async": "2.6.4",
"aws-serverless-express": "^3.3.6",
"cheerio": "1.0.0-rc.12",
"chokidar": "^3.3.1",
"ejs": "3.1.9",
"entities": "1.1.1",
"express": "4.18.2",
"globby": "^12.0.2",
"graceful-cluster": "0.0.3",
"htmlparser2": "^7.1.2",
"iconv-lite": "^0.6.3",
"jslint": "^0.12.1",
"jsontoxml": "0.0.11",
"memcached": "2.2.2",
"moment": "2.29.4",
"node-cache": "1.*",
"parse-iso-duration": "1.0.0",
"probe-image-size": "6.0.0",
"readabilitySAX": "1.6.1",
"redis": "3.1.1",
"redis-clustr": "1.7.0",
"request": "^2.88.0",
"sax": "1.2.2",
"semver": "^6.3.0",
"send": "0.16.1",
"underscore": "^1.13.1"
},
"devDependencies": {
"chai": "5.1.0",
"feedparser": "2.2.0",
"mocha": "10.3.0",
"mock-http-server": "^1.0.0",
"mongoose": "5.13.20",
"supertest": "6.3.4"
},
"resolutions": {
"jslint/glob/minimatch": "3.0.5",
"mock-http-server/body-parser/qs": "6.7.3",
"redis-clustr/redis": "3.1.1",
"request/http-signature/jsprim/json-schema": "0.4.0",
"request/qs": "6.7.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",
"template": "AWS_API_STAGE=prod node bin/template.cjs",
"package": "aws cloudformation package --template ./cloudformation.yaml --s3-bucket $AWS_S3_BUCKET --s3-prefix iframely --output-template packaged-sam.yaml --region eu-west-2",
"upload": "aws cloudformation deploy --template-file packaged-sam.yaml --stack-name $AWS_FN_NAME --capabilities CAPABILITY_IAM --region eu-west-2",
"delete-stack": "aws cloudformation delete-stack --stack-name $AWS_FN_NAME --region eu-west-2",
"deploy": "yarn template && yarn package && yarn upload"
},
"engines": {
"node": ">=12.0"
}
}