-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 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
{
"name": "ghost-cloudflare-cache-invalidation",
"version": "0.0.1",
"description": "AWS Lambda function to receive Ghost webhooks and invalidate Cloudflare cache",
"keywords": [
"ghost",
"cloudflare",
"cache",
"aws",
"lambda"
],
"homepage": "https://github.com/cmorbitzer/ghost-cloudflare-cache-invalidation",
"bugs": {
"url": "https://github.com/cmorbitzer/ghost-cloudflare-cache-invalidation/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Chris Morbitzer",
"email": "[email protected]",
"url": "https://www.chrismorbitzer.com"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/cmorbitzer/ghost-cloudflare-cache-invalidation.git"
},
"scripts": {
"build": "tsc"
},
"dependencies": {
"axios": "^0.19.2"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.46",
"@types/node": "^13.9.2",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
}
}