forked from agiledigital/serverless-sns-sqs-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "@venncity/serverless-sns-sqs-lambda",
"version": "0.1.8",
"description": "serverless plugin to make serverless-sns-sqs-lambda events",
"main": "lib/serverless-sns-sqs-lambda.js",
"scripts": {
"test": "jest --clearCache && jest --runInBand",
"plant-thy-self": "sh scripts/plant.sh",
"add-plant": "git add plant-uml-files/*",
"pre-commit": "npm run test && npm run plant-thy-self && npm run add-plant"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agiledigital/serverless-sns-sqs-lambda.git"
},
"keywords": [
"serverless",
"sls",
"sns",
"sqs",
"aws",
"lambda"
],
"author": "agileDigital",
"license": "MIT",
"bugs": {
"url": "https://github.com/agiledigital/serverless-sns-sqs-lambda/issues"
},
"homepage": "https://github.com/agiledigital/serverless-sns-sqs-lambda#readme",
"devDependencies": {
"husky": "^3.0.5",
"jest": "^24.9.0",
"serverless": "^1.51.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit",
"pre-push": "npm version from-git --allow-same-version"
}
},
"publishConfig": {
"access": "public"
}
}