-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 728 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 728 Bytes
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
{
"name": "prismic-lambda-webhook",
"version": "0.1.0",
"description": "Lambad based handler for Prismic.io webhook to build content",
"main": "webhook.js",
"scripts": {
"test": "jest",
"watch": "jest --watch"
},
"keywords": [
"serverless",
"lambda",
"aws",
"build",
"sns",
"prismic.io",
"webhook"
],
"author": "Juha Mustonen",
"license": "MIT",
"devDependencies": {
"aws-sdk": "~2.77.0",
"aws-sdk-mock": "~1.7.0",
"babel-preset-env": "^1.5.2",
"jest": "~20.0.4",
"serverless-plugin-optimize": "~3.0.1-rc.1",
"sinon": "^2.3.5"
},
"jest": {
"verbose": false
},
"dependencies": {
"debug": "~2.6.8",
"prismic.io": "~3.5.7"
}
}