-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
{
"name": "@vizir/idempotent-aws-lambda",
"version": "2.0.0",
"description": "A fast way to turn your aws lambda idempotent.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist/src"
],
"scripts": {
"prepare": "tsc",
"lint": "eslint . --ext ts",
"pretest": "npm run lint",
"test": "jest --config ./jest.config.json",
"test:watch": "jest --config ./jest.config.json --watch"
},
"keywords": [
"idempotent aws lambda"
],
"author": "Vizir Software Studio <[email protected]>",
"contributors": [
"Tiago de Assis Gonçalves <[email protected]>"
],
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.813.0"
},
"devDependencies": {
"@types/faker": "^5.1.5",
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-sonarjs": "^0.5.0",
"faker": "^5.1.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"nock": "^13.0.5",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vizir/idempotent-aws-lambda.git"
},
"bugs": {
"url": "https://github.com/vizir/idempotent-aws-lambda/issues"
},
"homepage": "https://github.com/vizir/idempotent-aws-lambda#readme",
"directories": {
"example": "examples",
"test": "test"
}
}