Skip to content

Commit e8793dc

Browse files
Merge pull request #8 from mikaelvesavuori/snyk-fix-839f3ef60b0b420f5f0af56b10371e9f
[Snyk] Fix for 3 vulnerabilities
2 parents 9088e89 + 6eae2a6 commit e8793dc

File tree

2 files changed

+55
-27
lines changed

2 files changed

+55
-27
lines changed

.snyk

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
2+
version: v1.14.1
3+
ignore: {}
4+
# patches apply the minimum changes required to fix a vulnerability
5+
patch:
6+
'npm:debug:20170905':
7+
- serverless > @serverless/components > @serverless/platform-client-china > @serverless/utils-china > socket.io-stream > debug:
8+
patched: '2020-05-10T08:19:52.569Z'
9+
SNYK-JS-LODASH-567746:
10+
- serverless > @serverless/components > graphlib > lodash:
11+
patched: '2020-05-10T08:19:52.569Z'
12+
- serverless > @serverless/components > @serverless/inquirer > inquirer > lodash:
13+
patched: '2020-05-10T08:19:52.569Z'
14+
- serverless > @serverless/components > @serverless/platform-client-china > @serverless/utils-china > winston > async > lodash:
15+
patched: '2020-05-10T08:19:52.569Z'
16+
- serverless > @serverless/enterprise-plugin > dependency-tree > precinct > detective-typescript > @typescript-eslint/typescript-estree > lodash:
17+
patched: '2020-05-10T08:19:52.569Z'
18+
- serverless > @serverless/components > @serverless/platform-client-china > @serverless/utils-china > @tencent-sdk/capi > request-promise-native > request-promise-core > lodash:
19+
patched: '2020-05-10T08:19:52.569Z'
20+
'npm:ms:20170412':
21+
- serverless > @serverless/components > @serverless/platform-client-china > @serverless/utils-china > socket.io-stream > debug > ms:
22+
patched: '2020-05-10T08:19:52.569Z'

package.json

Lines changed: 33 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,35 @@
11
{
2-
"name": "lambda-prerender",
3-
"description": "Dynamically prerender pages for bots and crawlers, with Lambda@Edge, S3 and CloudFront. No more need for isomorphic/server-side rendering!",
4-
"keywords": [
5-
"lambda-functions",
6-
"lambda-edge",
7-
"serverless",
8-
"s3-website",
9-
"cloudfront",
10-
"prerendering",
11-
"seo",
12-
"dynamic-rendering"
13-
],
14-
"version": "1.0.1",
15-
"main": "index.js",
16-
"author": "Mikael Vesavuori",
17-
"repository": {
18-
"type": "git",
19-
"url": "https://github.com/mikaelvesavuori/lambda-dynamic-prerenderer"
20-
},
21-
"license": "MIT",
22-
"devDependencies": {
23-
"serverless": "^1.70.0"
24-
},
25-
"dependencies": {
26-
"chrome-aws-lambda": "^2.0.2",
27-
"puppeteer-core": "^2.1.1"
28-
}
2+
"name": "lambda-prerender",
3+
"description": "Dynamically prerender pages for bots and crawlers, with Lambda@Edge, S3 and CloudFront. No more need for isomorphic/server-side rendering!",
4+
"keywords": [
5+
"lambda-functions",
6+
"lambda-edge",
7+
"serverless",
8+
"s3-website",
9+
"cloudfront",
10+
"prerendering",
11+
"seo",
12+
"dynamic-rendering"
13+
],
14+
"version": "1.0.1",
15+
"main": "index.js",
16+
"author": "Mikael Vesavuori",
17+
"repository": {
18+
"type": "git",
19+
"url": "https://github.com/mikaelvesavuori/lambda-dynamic-prerenderer"
20+
},
21+
"license": "MIT",
22+
"devDependencies": {
23+
"serverless": "^1.70.0"
24+
},
25+
"dependencies": {
26+
"chrome-aws-lambda": "^2.0.2",
27+
"puppeteer-core": "^2.1.1",
28+
"snyk": "^1.319.2"
29+
},
30+
"scripts": {
31+
"snyk-protect": "snyk protect",
32+
"prepare": "yarn run snyk-protect"
33+
},
34+
"snyk": true
2935
}

0 commit comments

Comments
 (0)