-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
73 lines (73 loc) · 1.97 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
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
{
"name": "@agiledigital/serverless-sns-sqs-lambda",
"version": "2.1.0",
"description": "serverless plugin to make serverless-sns-sqs-lambda events",
"main": "dist/index.js",
"scripts": {
"test": "yarn build && eslint lib/**/*.ts && jest --clearCache lib && jest --runInBand lib integration-tests",
"format": "prettier --ignore-path .gitignore --write . !**.md",
"format-check": "prettier --ignore-path .gitignore --check . !**.md",
"build": "tsc",
"commit": "git-cz",
"check-branch-commits": "cz check --rev-range master..HEAD",
"prepack": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agiledigital/serverless-sns-sqs-lambda.git"
},
"keywords": [
"serverless",
"sls",
"sns",
"sqs",
"aws",
"lambda"
],
"author": "Agile Digital",
"license": "MIT",
"bugs": {
"url": "https://github.com/agiledigital/serverless-sns-sqs-lambda/issues"
},
"homepage": "https://github.com/agiledigital/serverless-sns-sqs-lambda#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@jedmao/semantic-release-npm-github-config": "^1.0.9",
"@serverless/test": "^11.0.0",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"ajv": "^8.6.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.12.1",
"jest": "^26.3.0",
"prettier": "^2.1.2",
"semantic-release": "^19.0.2",
"serverless": "^3.16.0",
"ts-jest": "^26.4.3",
"type-coverage": "^2.14.0",
"type-fest": "^2.9.0",
"typescript": "^4.0.5"
},
"peerDependencies": {
"serverless": "3.x"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": [
"dist"
],
"typeCoverage": {
"atLeast": 56,
"strict": true,
"detail": true
}
}